diff options
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/mail-ops.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 085fd9c29a..b52aa923fe 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2002-03-04 Ettore Perazzoli <ettore@ximian.com> + + [Fix #19303.] + + * mail-ops.c (mail_send_message): Set X-Mailer to say "Ximian + Evolution", not just "Evolution". + 2002-03-01 Jeffrey Stedfast <fejj@ximian.com> * mail-callbacks.c (forward_message): Forward all selected diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 73d369f31f..f53f78c4cb 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -455,7 +455,7 @@ mail_send_message (CamelMimeMessage *message, const char *destination, int i; camel_medium_set_header (CAMEL_MEDIUM (message), "X-Mailer", - "Evolution/" VERSION SUB_VERSION " " VERSION_COMMENT); + "Ximian Evolution " VERSION SUB_VERSION " " VERSION_COMMENT); camel_mime_message_set_date (message, CAMEL_MESSAGE_DATE_CURRENT, 0); |