Skip to content

Commit

Permalink
postfix-3.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
wietse-postfix authored and hs-viktor committed Feb 25, 2025
1 parent 71667fa commit 513334e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions postfix/HISTORY
Original file line number Diff line number Diff line change
Expand Up @@ -27444,3 +27444,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.
4 changes: 2 additions & 2 deletions postfix/src/global/mail_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.8"
#define MAIL_RELEASE_DATE "20250224"
#define MAIL_VERSION_NUMBER "3.8.9"

#ifdef SNAPSHOT
#define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE
Expand Down
3 changes: 2 additions & 1 deletion postfix/src/smtp/smtp_addr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 513334e

Please sign in to comment.