]> git.ipfire.org Git - thirdparty/postfix.git/commitdiff
postfix-2.0.16-20031207
authorWietse Venema <wietse@porcupine.org>
Sun, 7 Dec 2003 05:00:00 +0000 (00:00 -0500)
committerViktor Dukhovni <viktor@dukhovni.org>
Tue, 5 Feb 2013 06:29:18 +0000 (06:29 +0000)
postfix/HISTORY
postfix/RELEASE_NOTES
postfix/src/global/deliver_pass.c
postfix/src/global/mail_version.h

index 483a03b8555a8329e6d7c7eff9b50b27c9a6be18..d11a0b4ae44704ce71c0ded7a0dbd8245f428bf1 100644 (file)
@@ -8812,6 +8812,11 @@ Apologies for any names omitted.
        Minor cleanups of the xclient error messages; xclient
        command lookup tables. File: smtpd/smtpd.c.
 
+20031207
+
+       Bugfix: fallback_transport and mailbox_transport were broken
+       because the deliver_pass.c module was not updated for the
+       changed message delivery protocol.
 Open problems:
 
        High: when virtual aliasing is turned off after content
index 9203c376c374b0c4921b7eb8687fe9dfa31a1f1d..23af8f6b4d56dc3f9bcb7eb86fea0dafbe676376 100644 (file)
@@ -1,6 +1,9 @@
 ===============================================================
 WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
 ===============================================================
+The XCLIENT feature for content filter logging is still changing
+and the design details have already changed again.
+
 The sender/recipient address verification code is lightly documented
 and has been tested lightly. The code is proof-of-concept quality
 and must not be used on high-volume sites.  Use at your own risk.
index df4c8608f1564a0110516794ecb011e62e1ea534..4eabb3673efb212fbb6203bf506425b1a1d77aa2 100644 (file)
@@ -107,6 +107,10 @@ static int deliver_pass_send_request(VSTREAM *stream, DELIVER_REQUEST *request,
               ATTR_TYPE_STR, MAIL_ATTR_ERRTO, request->errors_to,
               ATTR_TYPE_STR, MAIL_ATTR_RRCPT, request->return_receipt,
               ATTR_TYPE_LONG, MAIL_ATTR_TIME, request->arrival_time,
+              ATTR_TYPE_STR, MAIL_ATTR_CLIENT_NAME, request->client_name,
+              ATTR_TYPE_STR, MAIL_ATTR_CLIENT_ADDR, request->client_addr,
+              ATTR_TYPE_STR, MAIL_ATTR_PROTO_NAME, request->client_proto,
+              ATTR_TYPE_STR, MAIL_ATTR_HELO_NAME, request->client_helo,
               ATTR_TYPE_LONG, MAIL_ATTR_OFFSET, offs,
               ATTR_TYPE_STR, MAIL_ATTR_ORCPT, orcpt,
               ATTR_TYPE_STR, MAIL_ATTR_RECIP, addr,
index f47afcf293f560d59ef22f80e920e3aa6232b37c..acb4ee8bcf0217a889c45da981bf09edf258b6eb 100644 (file)
@@ -20,7 +20,7 @@
   * Patches change the patchlevel and the release date. Snapshots change the
   * release date only, unless they include the same bugfix as a patch release.
   */
-#define MAIL_RELEASE_DATE      "20031204"
+#define MAIL_RELEASE_DATE      "20031207"
 
 #define VAR_MAIL_VERSION       "mail_version"
 #define DEF_MAIL_VERSION       "2.0.16-" MAIL_RELEASE_DATE