]> git.ipfire.org Git - thirdparty/postfix.git/commitdiff
postfix-3.0.11 v3.0.11
authorWietse Venema <wietse@porcupine.org>
Sat, 28 Oct 2017 05:00:00 +0000 (00:00 -0500)
committerViktor Dukhovni <postfix-users@dukhovni.org>
Sun, 29 Oct 2017 22:43:53 +0000 (18:43 -0400)
postfix/HISTORY
postfix/src/global/mail_version.h
postfix/src/sendmail/sendmail.c

index aeffbe9f12aa76c8c2ecb1209ccfb7ea619f2341..d72fc35dce5571ba91749cc84d820f79eaefc894 100644 (file)
@@ -21870,3 +21870,9 @@ Apologies for any names omitted.
        by other users. This fix does not change Postfix behavior
        for Berkeley DB < 3, but reduces file create performance
        for Berkeley DB 3 .. 4.6.  File: util/dict_db.c.
+20171024
+
+       Bugfix (introduced: Postfix 3.0) missing dynamicmaps support
+       in the Postfix sendmail command broke authorized_submit_users
+       with a dynamically-loaded map type. File: sendmail/sendmail.c.
index e3e156b616023ac6dc2f8124257a8753b47213c2..cbcf003a5f2ec3fe0fa2f592dbc1d746f85ebfba 100644 (file)
@@ -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      "20170613"
-#define MAIL_VERSION_NUMBER    "3.0.10"
+#define MAIL_RELEASE_DATE      "20171028"
+#define MAIL_VERSION_NUMBER    "3.0.11"
 
 #ifdef SNAPSHOT
 #define MAIL_VERSION_DATE      "-" MAIL_RELEASE_DATE
index 4a91aa48e07b43a114d87e0f4e1b8d12251e4f05..5ed829ebfa33e24abe75de2562833e58223ca12c 100644 (file)
 #include <deliver_request.h>
 #include <mime_state.h>
 #include <header_opts.h>
+#include <mail_dict.h>
 #include <user_acl.h>
 #include <dsn_mask.h>
 
@@ -1077,6 +1078,8 @@ int     main(int argc, char **argv)
        msg_syslog_init(mail_task("sendmail"), LOG_PID, LOG_FACILITY);
     get_mail_conf_str_table(str_table);
 
+    mail_dict_init();
+
     if (chdir(var_queue_dir))
        msg_fatal_status(EX_UNAVAILABLE, "chdir %s: %m", var_queue_dir);