2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-22 09:57:34 +00:00

postfix-3.10.1

This commit is contained in:
Wietse Z Venema 2025-02-24 00:00:00 -05:00 committed by Viktor Dukhovni
parent 8599da0f46
commit 186a72901f
3 changed files with 11 additions and 3 deletions

View File

@ -28995,3 +28995,10 @@ Apologies for any names omitted.
Bugfix (defect introduced: Postfix 3.10): Postfix SMTP Bugfix (defect introduced: Postfix 3.10): Postfix SMTP
client segfault while reporting a 'certificate expired' client segfault while reporting a 'certificate expired'
event. Problem reported by Oemer Gueven. File: tls/tls_verify.c. event. Problem reported by Oemer Gueven. File: tls/tls_verify.c.
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.

View File

@ -20,8 +20,8 @@
* Patches change both the patchlevel and the release date. Snapshots have no * Patches change both the patchlevel and the release date. Snapshots have no
* patchlevel; they change the release date only. * patchlevel; they change the release date only.
*/ */
#define MAIL_RELEASE_DATE "20250217" #define MAIL_RELEASE_DATE "20250224"
#define MAIL_VERSION_NUMBER "3.10.0" #define MAIL_VERSION_NUMBER "3.10.1"
#ifdef SNAPSHOT #ifdef SNAPSHOT
#define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE #define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE

View File

@ -299,7 +299,8 @@ static DNS_RR *smtp_addr_list(DNS_RR *mx_names, DSN_BUF *why)
if (mx_names->dnssec_valid) if (mx_names->dnssec_valid)
res_opt = RES_USE_DNSSEC; res_opt = RES_USE_DNSSEC;
#ifdef USE_TLS #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; res_opt = RES_USE_DNSSEC;
#endif #endif