From: Wietse Venema Date: Wed, 11 Jul 2007 05:00:00 +0000 (-0500) Subject: postfix-2.4.4-RC3 X-Git-Tag: v2.4.4-RC3^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=768c7193e4d8c3a37d34a67fc4bc245a96a2441b;p=thirdparty%2Fpostfix.git postfix-2.4.4-RC3 --- diff --git a/postfix/HISTORY b/postfix/HISTORY index a8b995270..5cd65d01b 100644 --- a/postfix/HISTORY +++ b/postfix/HISTORY @@ -13484,13 +13484,13 @@ Apologies for any names omitted. 20070613 - Bugfix: the Milter client assumed that a Milter application - does not modify the message header or envelope, after that - same Milter application has modified the message body of - that same email message. This is not a problem with updates - by different Milter applications. Problem was triggered - by Jose-Marcio Martins da Cruz. Also simplified the handling - of queue file update errors. File: milter/milter8.c. + Bugfix: the Milter client assumed that a Milter application + does not modify the message header or envelope, after that + same Milter application has modified the message body of + that same email message. This is not a problem with updates + by different Milter applications. Problem was triggered + by Jose-Marcio Martins da Cruz. Also simplified the handling + of queue file update errors. File: milter/milter8.c. 20070614 diff --git a/postfix/src/global/mail_params.h b/postfix/src/global/mail_params.h index 64b639ca2..2785921c1 100644 --- a/postfix/src/global/mail_params.h +++ b/postfix/src/global/mail_params.h @@ -41,9 +41,12 @@ extern bool var_show_unk_rcpt_table; * What problem classes should be reported to the postmaster via email. * Default is bad problems only. See mail_error(3). Even when mail notices * are disabled, problems are still logged to the syslog daemon. + * + * Do not add "protocol" to the default setting. It gives Postfix a bad + * reputation: people get mail whenever spam software makes a mistake. */ #define VAR_NOTIFY_CLASSES "notify_classes" -#define DEF_NOTIFY_CLASSES "resource, software" +#define DEF_NOTIFY_CLASSES "resource, software" /* Not: "protocol" */ extern char *var_notify_classes; /* diff --git a/postfix/src/global/mail_version.h b/postfix/src/global/mail_version.h index ced987d86..a1bca38e8 100644 --- a/postfix/src/global/mail_version.h +++ b/postfix/src/global/mail_version.h @@ -20,8 +20,8 @@ * Patches change both the patchlevel and the release date. Snapshots have no * patchlevel; they change the release date only. */ -#define MAIL_RELEASE_DATE "20070710" -#define MAIL_VERSION_NUMBER "2.4.4-RC2" +#define MAIL_RELEASE_DATE "20070711" +#define MAIL_VERSION_NUMBER "2.4.4-RC3" #ifdef SNAPSHOT # define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE diff --git a/postfix/src/xsasl/xsasl_cyrus_client.c b/postfix/src/xsasl/xsasl_cyrus_client.c index b84cd1fa0..591dd1862 100644 --- a/postfix/src/xsasl/xsasl_cyrus_client.c +++ b/postfix/src/xsasl/xsasl_cyrus_client.c @@ -65,6 +65,11 @@ #include #include + /* + * Global library + */ +#include + /* * Application-specific */