Commit c7aa8484 c7aa84848e9ea28761e75629c45cb96a9e768ccb by Sergey Poznyakoff

Update

1 parent 35639689
1 2006-02-17 Sergey Poznyakoff <gray@gnu.org.ua>
2
3 * NEWS: Update
4
5 * mh/mhn.c (split_args): New function
6 (_message_is_external_body ): Use split_args to parse
7 additional arguments
8 (mhn_edit): Fix invocation of edit_modify (was not getting
9 additional arguments after ';')
10 (parse_header_directive): New function
11 (mhn_header): New function
12 (mhn_compose): Bugfix: initialize env.line
13 Call mhn_header to optionally encode Subject line
14
15 * mailbox/rfc2047.c (mu_rfc2047_encode): Return EINVAL if any of
16 the arguments is NULL.
17
18 * frm/common.c (get_personal): Fix coredump on empty From: headers.
19
1 2006-02-09 Sergey Poznyakoff <gray@gnu.org.ua> 20 2006-02-09 Sergey Poznyakoff <gray@gnu.org.ua>
2 21
3 * mailbox/message_stream.c (restore_envelope): Restore line 22 * mailbox/message_stream.c (restore_envelope): Restore line
......
1 GNU mailutils NEWS -- history of user-visible changes. 2006-01-25 1 GNU mailutils NEWS -- history of user-visible changes. 2006-02-17
2 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 2 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3 See the end of file for copying conditions. 3 See the end of file for copying conditions.
4 4
...@@ -76,6 +76,16 @@ the value 'yes' means to add the default X-Mailer string, the value ...@@ -76,6 +76,16 @@ the value 'yes' means to add the default X-Mailer string, the value
76 'no' means to ignore it. Any other value is taken as the X-Mailer 76 'no' means to ignore it. Any other value is taken as the X-Mailer
77 identifier to be added to the message. 77 identifier to be added to the message.
78 78
79 ** mhn
80
81 In compose mode mhn analyzes Subject: line and, if it contains any
82 non-printable characters, encodes it in accordance with RFC
83 2047. Encoding type and charset are taken from the first message
84 part. They also can be specified in the subject itself using the
85 following syntax:
86
87 #<encoding=ENC; charset=CSET>CONTENT
88
79 * Bugfixes: 89 * Bugfixes:
80 ** mail: Fix handling of conditional expressions 90 ** mail: Fix handling of conditional expressions
81 ** mail: When several recipients were specified, no alias expansion took 91 ** mail: When several recipients were specified, no alias expansion took
......