]> git.ipfire.org Git - thirdparty/postfix.git/commitdiff
snapshot-19990410
authorWietse Venema <wietse@porcupine.org>
Sat, 10 Apr 1999 05:00:00 +0000 (00:00 -0500)
committerWietse Venema <wietse@porcupine.org>
Thu, 17 Jan 2013 03:34:10 +0000 (22:34 -0500)
postfix/HISTORY
postfix/bounce/bounce_notify_service.c
postfix/conf/main.cf.default
postfix/global/mail_version.h
postfix/master/multi_server.c
postfix/master/single_server.c

index 4531b2e4e11913b18044ddae60050a014df7b082..48a8751dd1822bb26a5b6767b13fb037b8cecfc0 100644 (file)
@@ -2445,7 +2445,7 @@ Apologies for any names omitted.
 
 19990326
 
-       Compatibility: Postfix now puts to spaces after the sender
+       Compatibility: Postfix now puts two spaces after the sender
        in a "From sender date..." header. Found by John A. Martin,
        fixed by Lamont Jones, Hewlett-Packard.
 
@@ -2495,7 +2495,7 @@ Apologies for any names omitted.
        Feature: new dictionary types can be registered with
        dict_open_register(). File: util/dict_open.c.
 
-1990330
+19990330
 
        Bug fix: match_list membership dictionary lookups were case
        sensitive when they should not. Patch by Lutz Jaenicke,
@@ -2596,6 +2596,12 @@ Apologies for any names omitted.
        Jones, Hewlett-Packard.  It is to be expected that full
        content filtering will be delegated to an external command.
 
+19990410
+
+       Bugfix: auto-detection of changes to DB or DBM lookup
+       tables wan't done for TCP connections.
+
+
 Future:
 
        Planned: must be able to list the same hash table in
index 5b15104fd1209aa2a611e520d992b79a8ff33f81..075896d51568f14a71692bd5c6dd92dd4dc4ad2c 100644 (file)
@@ -122,7 +122,7 @@ static int bounce_header(VSTREAM *bounce, VSTRING *buf, const char *dest,
      */
     post_mail_fprintf(bounce, "MIME-Version: 1.0");
     post_mail_fprintf(bounce, "Content-Type: %s; report-type=%s;",
-                     "multipart/report", "x-postfix-report");
+                     "multipart/report", "plain");
     post_mail_fprintf(bounce, "\tboundary=\"%s\"", boundary);
     post_mail_fputs(bounce, "");
     post_mail_fputs(bounce, "This is a MIME-encapsulated message.");
@@ -213,7 +213,7 @@ static int bounce_diagnostics(char *service, VSTREAM *bounce, VSTRING *buf,
      */
     post_mail_fprintf(bounce, "--%s", boundary);
     post_mail_fprintf(bounce, "Content-Description: %s", "Delivery error report");
-    post_mail_fprintf(bounce, "Content-Type: %s", "text/x-postfix-report");
+    post_mail_fprintf(bounce, "Content-Type: %s", "text/plain");
     post_mail_fputs(bounce, "");
 
     /*
index 20a1312bbbfeb0330130409371d9d3faa4b1ddec..e1dd69fa6838ad8e6f692363621e8e40b880b455 100644 (file)
@@ -61,7 +61,7 @@ luser_relay =
 mail_name = Postfix
 mail_owner = postfix
 mail_spool_directory = /var/mail
-mail_version = Snapshot-19990409
+mail_version = Snapshot-19990410
 mailbox_command = 
 mailbox_transport = 
 maps_rbl_domains = rbl.maps.vix.com
index 2e4b49c4c2905879eeb232408ac072f07d647fe5..67394bfd52ed3552277096e381f25f5e8c87f43e 100644 (file)
@@ -15,7 +15,7 @@
   * Version of this program.
   */
 #define VAR_MAIL_VERSION       "mail_version"
-#define DEF_MAIL_VERSION       "Snapshot-19990409"
+#define DEF_MAIL_VERSION       "Snapshot-19990410"
 extern char *var_mail_version;
 
 /* LICENSE
index 2f2cb4909039b540ab3100abdbcf8603b8eedebc..01d981129ec997edad813dda84d0cedfaee4f617 100644 (file)
@@ -330,6 +330,8 @@ static void multi_server_accept_inet(int unused_event, char *context)
     if (client_count == 0 && var_idle_limit > 0)
        time_left = event_cancel_timer(multi_server_timeout, (char *) 0);
 
+    if (multi_server_pre_accept)
+       multi_server_pre_accept();
     fd = inet_accept(listen_fd);
     if (multi_server_lock != 0
        && myflock(vstream_fileno(multi_server_lock), MYFLOCK_NONE) < 0)
index b3084ab1a9bb55dec0a5f16092a1adb2013e859f..0922ce8c6a855927b4274dfb49f71e4d87c8ffe6 100644 (file)
@@ -299,6 +299,8 @@ static void single_server_accept_inet(int unused_event, char *context)
     if (var_idle_limit > 0)
        time_left = event_cancel_timer(single_server_timeout, (char *) 0);
 
+    if (single_server_pre_accept)
+       single_server_pre_accept();
     fd = inet_accept(listen_fd);
     if (single_server_lock != 0
        && myflock(vstream_fileno(single_server_lock), MYFLOCK_NONE) < 0)