Browse Source

added todo: log to stdout

Fabian Peter Hammerle 5 years ago
parent
commit
3a1c27254b
1 changed files with 4 additions and 0 deletions
  1. 4 0
      serve.sh

+ 4 - 0
serve.sh

@@ -4,8 +4,12 @@ function set_option {
     (set -x; postconf -evv "$1=$2")
 }
 
+# http://www.postfix.org/postconf.5.html
 [ -z "$POSTFIX_RELAYHOST" ] || set_option relayhost "$POSTFIX_RELAYHOST"
 [ -z "$POSTFIX_RELAY_DOMAINS" ] || set_option relay_domains "$POSTFIX_RELAY_DOMAINS"
+# TODO log to stdout (requires postfix >= 3.4)
+# http://www.postfix.org/announcements/postfix-3.4.0.html
+# http://www.postfix.org/MAILLOG_README.html
 set_option syslog_name "$(hostname)/pstfx"
 
 set -x