]> git.marmaro.de Git - mmh/blobdiff - uip/sendfiles.sh
Fix missing va_end call in uip/mhmisc.c
[mmh] / uip / sendfiles.sh
index 40d8f72e5bab5c913ad7edaf31870198c70e21c2..5e4cd67f17c2357335e0ce3367827c2ce22891bf 100755 (executable)
@@ -3,7 +3,7 @@
 # Send multiples files non-interactively
 
 # adjust if needed
-attachment_header='Attach'
+attachment_header=`mhparam Attachment-Header`
 
 
 if [ $# -lt 3 ]; then
@@ -23,13 +23,12 @@ Files:     $*
 !
 
 draft=`mktemp /tmp/sendfiles.XXXXXX`
-trap 'rm -f "$draft"' 1 2 3 15
-cat >"$draft" <<!
-To: $rcpt
-Subject: $subject
-!
+trap 'rm -f "$draft"' 1 2 15
+
+anno "$draft" -component To -text "$rcpt" -nodate
+anno "$draft" -component Subject -text "$subject" -nodate
 for i in "$@" ; do
-       echo "$attachment_header: $i" >>"$draft"
+       anno "$draft" -component  "$attachment_header" -text "$i" -nodate
 done
 
 send "$draft"