# HG changeset patch # User Franz Glasner # Date 1571124348 -7200 # Node ID dad9f2d80c10e2c82075c38d25ce34f35f5e1aa8 # Parent 2d531cbd0feb097627c941b0d49e6b27ad6a3e09 Enhance some comments diff -r 2d531cbd0feb -r dad9f2d80c10 bin/bsmtp2dma --- a/bin/bsmtp2dma Tue Oct 15 09:24:56 2019 +0200 +++ b/bin/bsmtp2dma Tue Oct 15 09:25:48 2019 +0200 @@ -176,11 +176,17 @@ printf "Subject: %s\n" "${SUBJECT}" >&3 fi if [ -n "${REPLYTO}" ]; then - # XXX TBD proper Reply-To header value checks + # + # XXX TBD proper Reply-To header value checks: + # a comma separated list of full mail addresses + # printf "Reply-To: %s\n" "${REPLYTO}" >&3 fi if [ -n "${CC}" ]; then - # XXX TBD proper CC header value checks + # + # XXX TBD proper CC header value checks: + # a comma separated list of full mail addresses + # printf "Cc: %s\n" "${CC}" >&3 fi printf "\n" >&3