]> git.ipfire.org Git - thirdparty/postfix.git/commitdiff
postfix-3.9.3 v3.9.3
authorWietse Z Venema <wietse@porcupine.org>
Mon, 24 Feb 2025 05:00:00 +0000 (00:00 -0500)
committerViktor Dukhovni <ietf-dane@dukhovni.org>
Tue, 25 Feb 2025 01:10:29 +0000 (12:10 +1100)
postfix/HISTORY
postfix/src/global/mail_version.h
postfix/src/smtp/smtp_addr.c

index a834480fc60d9a955be2a3155839d8b9302e65da..228b71665073aa5702eb1f3acf074a1d7acdc1b9 100644 (file)
@@ -28098,3 +28098,10 @@ Apologies for any names omitted.
        configuration; added a post-quantum example to the
        tls_config_file description. File: proto/postconf.proto.
        The unused parameters will be deleted in Postfix 3.11.
+
+20250221
+
+       Bugfix (defect introduced: 20250210): a recent 'fix' for the
+       default smtp_tls_dane_insecure_mx_policy setting resulted in
+       unnecessary 'dnssec_probe' warnings, on systems that disable
+       DNSSEC lookups (the default). File: smtp/smtp_addr.c.
index 44f1c9d1a3727ab25423e2251e690cda9c538d5b..5d0f488949edbb7e5f1ed2732bffeb96ec99ab6d 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      "20250216"
-#define MAIL_VERSION_NUMBER    "3.9.2"
+#define MAIL_RELEASE_DATE      "20250224"
+#define MAIL_VERSION_NUMBER    "3.9.3"
 
 #ifdef SNAPSHOT
 #define MAIL_VERSION_DATE      "-" MAIL_RELEASE_DATE
index 8c384fc377fe46b6d055fa3f671740841a428fad..00e11fa41eb6b0c2a8fca9b805e469fc2d6f808f 100644 (file)
@@ -299,7 +299,8 @@ static DNS_RR *smtp_addr_list(DNS_RR *mx_names, DSN_BUF *why)
     if (mx_names->dnssec_valid)
        res_opt = RES_USE_DNSSEC;
 #ifdef USE_TLS
-    else if (smtp_tls_insecure_mx_policy > TLS_LEV_MAY)
+    else if (smtp_tls_insecure_mx_policy > TLS_LEV_MAY
+            && smtp_dns_support == SMTP_DNS_DNSSEC)
        res_opt = RES_USE_DNSSEC;
 #endif