diff options
-rwxr-xr-x | postfix/postfix.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/postfix/postfix.sh b/postfix/postfix.sh index 635bc06..dfe0211 100755 --- a/postfix/postfix.sh +++ b/postfix/postfix.sh @@ -9,7 +9,6 @@ # # FIXME: # * replace dkimproxy with opendkim: https://wiki.debian.org/opendkim -# * use _public_ chained cerificate (not bogusly _private_ chained key) # # TODO: # * Implement stuff from here: http://www.wsrcc.com/spam/ @@ -169,7 +168,7 @@ ENABLE_TLS= if [ -f "$TLS_CHAIN_FILES" ]; then ENABLE_TLS=1 else - warn "No TLS - requires key chain \"$TLS_CHAIN_FILES\"." + warn "No TLS - requires key+cert chain file \"$TLS_CHAIN_FILES\". More info at <https://www.postfix.org/postconf.5.html#smtpd_tls_chain_files>" fi # TODO: enable only on systems with user accounts ENABLE_SUBMISSION=1 |