diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2019-05-21 19:36:50 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2019-05-22 00:44:05 +0100 |
commit | 59c0959a36649c4554bd0f18f2c2e74571ed41eb (patch) | |
tree | dfa2b31a60ac37596e150dc523a9d5c0a0cbe2d0 /src | |
parent | 8c94e6b324886ec53604d0ebfde61731a3d1adf6 (diff) |
Change the default for hosts_try_dane, enabling use by default
Diffstat (limited to 'src')
-rw-r--r-- | src/src/EDITME | 4 | ||||
-rw-r--r-- | src/src/transports/smtp.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/src/EDITME b/src/src/EDITME index dea4e4cf8..415f021ee 100644 --- a/src/src/EDITME +++ b/src/src/EDITME @@ -367,10 +367,10 @@ PCRE_CONFIG=yes #------------------------------------------------------------------------------ -# Uncomment the following line to add DANE support +# Comment out the following line to remove DANE support # Note: Enabling this unconditionally overrides DISABLE_DNSSEC # For DANE under GnuTLS we need an additional library. See TLS_LIBS below. -# SUPPORT_DANE=yes +SUPPORT_DANE=yes #------------------------------------------------------------------------------ # Additional libraries and include directories may be required for some diff --git a/src/src/transports/smtp.c b/src/src/transports/smtp.c index 041ed9393..3d7aaae6b 100644 --- a/src/src/transports/smtp.c +++ b/src/src/transports/smtp.c @@ -240,7 +240,7 @@ smtp_transport_options_block smtp_transport_option_defaults = { .hosts_require_auth = NULL, .hosts_try_chunking = US"*", #ifdef SUPPORT_DANE - .hosts_try_dane = NULL, + .hosts_try_dane = US"*", .hosts_require_dane = NULL, .dane_require_tls_ciphers = NULL, #endif |