Commit b244a165 b244a1655f5c3352e348080b9a5032932b2fb40a by Sergey Poznyakoff

Update

1 parent ff7f3adc
1 2006-01-24 Sergey Poznyakoff <gray@gnu.org.ua> 1 2006-01-24 Sergey Poznyakoff <gray@gnu.org.ua>
2 2
3 * mh/mh_ctx.c (mh_context_read): Allow for empty lines and
4 conventional comment characters ('#') in the context file.
5 * mh/mh_init.c (mh_is_my_name): Bugfix: do not use strtok_r, which
6 modifies its argument.
7
3 * include/mailutils/header.h (MU_HEADER_X_MAILER): New define 8 * include/mailutils/header.h (MU_HEADER_X_MAILER): New define
4 * mail/send.c (mail_send0): Use MU_HEADER_X_MAILER 9 * mail/send.c (mail_send0): Use MU_HEADER_X_MAILER
5 * mh/replcomps: Remove X-Mailer. Send will add it if needed. 10 * mh/replcomps: Remove X-Mailer. Send will add it if needed.
......
...@@ -33,6 +33,15 @@ directory does not exist, create it. ...@@ -33,6 +33,15 @@ directory does not exist, create it.
33 33
34 * Changes in MH 34 * Changes in MH
35 35
36 ** Context file handling
37
38 Comments and empty lines are allowed in any MH context file
39 (.mh_profile, .mtstailor etc.)
40
41 Comment is any line whose first non-whitespace character is
42 '#'. Notice that '#' looses its special meaning when used as a part of
43 the keyword or a value.
44
36 ** send 45 ** send
37 46
38 Add support for localname and localdomain mtstailor variables. 47 Add support for localname and localdomain mtstailor variables.
...@@ -49,6 +58,7 @@ identifier to be added to the message. ...@@ -49,6 +58,7 @@ identifier to be added to the message.
49 place. 58 place.
50 ** movemail: did not preserve input mailbox if an I/O error happened on the 59 ** movemail: did not preserve input mailbox if an I/O error happened on the
51 output one. Debian Bug#344420. 60 output one. Debian Bug#344420.
61 ** Fix handling of Alternate-Mailboxes in MH
52 62
53 63
54 Version 0.6.91: 64 Version 0.6.91:
......