comparison ChangeLog @ 324:a4d8f20a992f

Updated ChangeLog and NEWS
author meillo@marmaro.de
date Fri, 03 Jun 2011 11:01:39 +0200
parents 95d536599fd7
children 2d4aa516ba0e
comparison
equal deleted inserted replaced
323:29de6a1c4538 324:a4d8f20a992f
4 The code repository log file provides the changes in full detail. 4 The code repository log file provides the changes in full detail.
5 5
6 Have a look at the NEWS file for a summary of the changes in a less 6 Have a look at the NEWS file for a summary of the changes in a less
7 technical speach and with focus on compatibility. 7 technical speach and with focus on compatibility.
8 8
9
10 0.3.2 Fri, 03 Jun 2011 10:14:33 +0200
11 * Fixed an important bug with folded headers! The folded lines
12 of a long header would be ignored in unpredictable cases.
13 Also fixed another problem with folded headers and
14 g_strconcat() in spool read.
15 * Reworked allowed and denied addrs for routes to be more
16 consistent and allow more flexible matching:
17 - allowed_mail_locals + allowed_return_paths ->
18 allowed_senders
19 - not_allowed_mail_locals + not_allowed_return_paths ->
20 denied_senders
21 - allowed_rcpt_domains -> allowed_recipients
22 - not_allowed_rcpt_domains -> denied_recipients
23 * Reworked online_detect to the simpler online_query. Only
24 pipe is supported now. Use
25 online_query="/bin/cat /path/to/file"
26 instead of
27 online_detect=file
28 online_file=/path/to/file
29 and
30 online_query="/path/to/some/script foo"
31 instead of
32 online_detect=pipe
33 online_pipe="/path/to/some/script foo"
34 See man page masqmail.conf(5) and admin/config-transition.
35 * Removed protocol option from route config because it was
36 somehow redundant. Now, if `pipe' is set, the protocol will
37 be pipe, otherwise it'll be smtp. That's just natural.
38 * Bugfix: off-by-one in pipe aliases
39 * Null-terminated the decoded base64 strings.
40 * Now the Received: headers are much friendlier to read. The
41 header for locally (i.e. non-SMTP) received mail is changed
42 to the format postfix uses.
43 * Replaced header_fold() with a better implementation and
44 improved the (yet) unused function header_fold().
45 * Made protocol names upper case, like RFC 5321 requires them.
46 * Several improvements to the man pages.
47 * As always: various refactoring.
48 * Ran aclocal and autoconf.
49 * Added a description of how I create a masqmail release.
9 50
10 0.3.1 Wed, 08 Dec 2010 18:03:04 -0300 51 0.3.1 Wed, 08 Dec 2010 18:03:04 -0300
11 * smtp_out.c: changed the SMTP greeting behavior to match RFC 52 * smtp_out.c: changed the SMTP greeting behavior to match RFC
12 2821 (always try EHLO first). Thanks to inne for pointing me 53 2821 (always try EHLO first). Thanks to inne for pointing me
13 on that. See also Debian bug #349211 54 on that. See also Debian bug #349211