changeset 114:dad9f2d80c10

Enhance some comments
author Franz Glasner <fzglas.hg@dom66.de>
date Tue, 15 Oct 2019 09:25:48 +0200
parents 2d531cbd0feb
children 78a0f6c19da3
files bin/bsmtp2dma
diffstat 1 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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