X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=etc%2Fsendfiles.in;h=5582b2a86f486cec798bedcbd21deec3cf0420d0;hb=eda72d6a7a7c20ff123043fb7f19c509ea01f932;hp=b443067e9441059da6a57d6184e92fd0ded33043;hpb=aae44c933a5b035e0b23abf4dd4247cd37e4d041;p=mmh diff --git a/etc/sendfiles.in b/etc/sendfiles.in index b443067..5582b2a 100755 --- a/etc/sendfiles.in +++ b/etc/sendfiles.in @@ -1,12 +1,9 @@ #!/bin/sh # -# $Id$ -# # Send multiples files and/or directories as a tar/compressed # image, in a MIME message. # -DELAY=0 FROM= # compression method (none, gzip or compress) @@ -26,23 +23,24 @@ elif command -v gzip >/dev/null 2>&1 ; then METHOD=gzip fi -# handle command-line options to override compression method and delay +# handle command-line options to override compression method while [ $# -gt 3 ]; do case "$1" in - -gzip) METHOD=gzip - shift - ;; - -compress) METHOD=compress - shift - ;; - -none) METHOD=none - shift - ;; - -*) DELAY="`echo $1 | sed -e 's%-%%'`" - shift - ;; - *) break - ;; + -gzip) + METHOD=gzip + shift + ;; + -compress) + METHOD=compress + shift + ;; + -none) + METHOD=none + shift + ;; + *) + break + ;; esac done @@ -78,7 +76,6 @@ echo "files = $*" 1>&2 tar cvf - "$@" | $COMPRESS | \ %libdir%/viamail -to "$mailpath" -subject "$subject" \ - -parameters "type=tar$CONVERSION" \ - -comment "extract with $UNCOMPRESS | tar xvpf -" \ - -delay "$DELAY" \ - -verbose $FROM + -parameters "type=tar$CONVERSION" \ + -comment "extract with $UNCOMPRESS | tar xvpf -" \ + -verbose $FROM