]> git.ipfire.org Git - thirdparty/postfix.git/commitdiff
postfix-2.4-20061002
authorWietse Venema <wietse@porcupine.org>
Sun, 1 Oct 2006 05:00:00 +0000 (00:00 -0500)
committerViktor Dukhovni <viktor@dukhovni.org>
Tue, 5 Feb 2013 06:32:36 +0000 (06:32 +0000)
postfix/HISTORY
postfix/src/global/mail_version.h
postfix/src/smtpd/smtpd.c

index 2ff259e00a86a014c1c68d864d8cd49880c26785..a9408bd3abc2a0acf62f2a2523af080dd36ee344 100644 (file)
@@ -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
index f8a1d565ac88a5bcecca83f2b9e69a6c532dfc02..3241474428c1a3d888b124ff022b959c06f6925c 100644 (file)
@@ -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
index e186a5f8b612fbb85c51243e4b80a0e812937e96..16f71294bfc7eb9ff4099cf6b6a899ce15358b92 100644 (file)
@@ -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);