Mercurial > hgrepos > FreeBSD > ports > sysutils > local-bsdtools
comparison bin/bsmtp2dma @ 114:dad9f2d80c10
Enhance some comments
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Tue, 15 Oct 2019 09:25:48 +0200 |
| parents | fa73423234bf |
| children | 5c92aeaec114 |
comparison
equal
deleted
inserted
replaced
| 113:2d531cbd0feb | 114:dad9f2d80c10 |
|---|---|
| 174 fi | 174 fi |
| 175 if [ -n "${SUBJECT}" ]; then | 175 if [ -n "${SUBJECT}" ]; then |
| 176 printf "Subject: %s\n" "${SUBJECT}" >&3 | 176 printf "Subject: %s\n" "${SUBJECT}" >&3 |
| 177 fi | 177 fi |
| 178 if [ -n "${REPLYTO}" ]; then | 178 if [ -n "${REPLYTO}" ]; then |
| 179 # XXX TBD proper Reply-To header value checks | 179 # |
| 180 # XXX TBD proper Reply-To header value checks: | |
| 181 # a comma separated list of full mail addresses | |
| 182 # | |
| 180 printf "Reply-To: %s\n" "${REPLYTO}" >&3 | 183 printf "Reply-To: %s\n" "${REPLYTO}" >&3 |
| 181 fi | 184 fi |
| 182 if [ -n "${CC}" ]; then | 185 if [ -n "${CC}" ]; then |
| 183 # XXX TBD proper CC header value checks | 186 # |
| 187 # XXX TBD proper CC header value checks: | |
| 188 # a comma separated list of full mail addresses | |
| 189 # | |
| 184 printf "Cc: %s\n" "${CC}" >&3 | 190 printf "Cc: %s\n" "${CC}" >&3 |
| 185 fi | 191 fi |
| 186 printf "\n" >&3 | 192 printf "\n" >&3 |
| 187 | 193 |
| 188 # preserve leading white space when reading with `read` | 194 # preserve leading white space when reading with `read` |
