From: Wietse Venema Date: Sat, 28 Oct 2017 05:00:00 +0000 (-0500) Subject: postfix-3.0.11 X-Git-Tag: v3.0.11^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aaacc60637b266f82719f94a1d18fd8421973f11;p=thirdparty%2Fpostfix.git postfix-3.0.11 --- diff --git a/postfix/HISTORY b/postfix/HISTORY index aeffbe9f1..d72fc35dc 100644 --- a/postfix/HISTORY +++ b/postfix/HISTORY @@ -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. diff --git a/postfix/src/global/mail_version.h b/postfix/src/global/mail_version.h index e3e156b61..cbcf003a5 100644 --- a/postfix/src/global/mail_version.h +++ b/postfix/src/global/mail_version.h @@ -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 diff --git a/postfix/src/sendmail/sendmail.c b/postfix/src/sendmail/sendmail.c index 4a91aa48e..5ed829ebf 100644 --- a/postfix/src/sendmail/sendmail.c +++ b/postfix/src/sendmail/sendmail.c @@ -467,6 +467,7 @@ #include #include #include +#include #include #include @@ -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);