diff --git a/postfix/HISTORY b/postfix/HISTORY index 2ff259e00..a9408bd3a 100644 --- a/postfix/HISTORY +++ b/postfix/HISTORY @@ -12757,6 +12757,16 @@ Apologies for any names omitted. Bugfix (introduced with Postfix 2.2): smtp_generic_maps turned on MIME conversion. File: smtp/smtp_proto.c. + Workaround: don't send SIZE information in the MAIL FROM + command when message content will be subject to 8bit -> + quoted-printable conversion. File: smtp/smtp_proto.c. + +20061002 + + Compatibility: Sendmail now invokes the Milter connect + action with the verified hostname instead of the name + obtained with PTR lookup. File: smtpd/smtpd.c. + Wish list: Update FILTER_README with mailing list suggestions to tag diff --git a/postfix/src/global/mail_version.h b/postfix/src/global/mail_version.h index f8a1d565a..324147442 100644 --- a/postfix/src/global/mail_version.h +++ b/postfix/src/global/mail_version.h @@ -20,7 +20,7 @@ * Patches change both the patchlevel and the release date. Snapshots have no * patchlevel; they change the release date only. */ -#define MAIL_RELEASE_DATE "20060930" +#define MAIL_RELEASE_DATE "20061001" #define MAIL_VERSION_NUMBER "2.4" #ifdef SNAPSHOT diff --git a/postfix/src/smtpd/smtpd.c b/postfix/src/smtpd/smtpd.c index e186a5f8b..16f71294b 100644 --- a/postfix/src/smtpd/smtpd.c +++ b/postfix/src/smtpd/smtpd.c @@ -3901,7 +3901,7 @@ static void smtpd_proto(SMTPD_STATE *state) if (smtpd_milters != 0 && SMTPD_STAND_ALONE(state) == 0) { milter_macro_callback(smtpd_milters, smtpd_milter_eval, (void *) state); - if ((err = milter_conn_event(smtpd_milters, state->reverse_name, + if ((err = milter_conn_event(smtpd_milters, state->name, state->addr, XXX_NO_PORT, state->addr_family)) != 0) err = check_milter_reply(state, err);