Commit ea09d596 ea09d5968982bc8da30d19593df984133e2a4e5e by Sergey Poznyakoff

Updated

1 parent bf77e1c1
1 2005-02-25 Sergey Poznyakoff
2
3 * NEWS: Updated
4 * include/mailutils/libsieve.h (sieve_get_identifier): New
5 function.
6 (sieve_arg_error): New function.
7 * libsieve/actions.c: Removed spurions indications of action
8 names in diagnostic messages. Sieve_error prepends them
9 automatically now.
10 * libsieve/tests.c: Likewise.
11 * libsieve/extensions/list.c: Likewise.
12 * libsieve/extensions/timestamp.c: Likewise.
13 * libsieve/extensions/vacation.c: Likewise.
14 * libsieve/runtime.c (instr_action,instr_test): Update
15 mach->identifier.
16 * libsieve/sieve.h (struct sieve_machine.identifier): New
17 field.
18
19 * libsieve/util.c (sieve_value_create): Bugfix.
20 (sieve_error): Prepend action or test identifier to the diagnostic
21 message.
22 (sieve_arg_error): New function.
23
24 * po/POTFILES.in: Updated
25
1 2005-02-24 Sergey Poznyakoff 26 2005-02-24 Sergey Poznyakoff
2 27
3 Update by gnulib-sync. 28 Update by gnulib-sync.
......
...@@ -8,8 +8,19 @@ Version 0.6.1: ...@@ -8,8 +8,19 @@ Version 0.6.1:
8 8
9 * libsieve: New action 'vacation' 9 * libsieve: New action 'vacation'
10 10
11 * imap4d: Implemented SASL authentication using LOGIN and PLAIN mechanisms.
12
11 * New SQL driver: odbc 13 * New SQL driver: odbc
12 14
15 * Ukrainian localization
16
17 * Bugfixes
18
19 ** Fixed possible mailbox corruption in imap4d
20 ** imap4d subscribe/unsubscribe was not working
21 ** Fixed displaying mail headers in different languages (mail,frm,from)
22 ** SQL authentication: prevent sql injection attacks
23
13 24
14 Version 0.6: 25 Version 0.6:
15 26
......
...@@ -47,6 +47,10 @@ libsieve/sieve.l ...@@ -47,6 +47,10 @@ libsieve/sieve.l
47 libsieve/sieve.y 47 libsieve/sieve.y
48 libsieve/tests.c 48 libsieve/tests.c
49 libsieve/util.c 49 libsieve/util.c
50 libsieve/extensions/vacation.c
51 libsieve/extensions/list.c
52 libsieve/extensions/spamd.c
53 libsieve/extensions/timestamp.c
50 54
51 mail/alias.c 55 mail/alias.c
52 mail/alt.c 56 mail/alt.c
......