syswrap openat2 for all linux arches
[valgrind.git] / nightly / conf / cellbuzz-cross.sendmail
blobec079a56b3399945c3c6921d734a81781f7f8439
1 #!/bin/sh
3 # use: georgia-tech-cellbuzz.sendmail subject file-to-mail [file-to-attach]
4 # Don't forget to set the variables 'from' and 'realname' in ~/.muttrc !
6 sender="bvanassche@acm.org"
7 recipients="valgrind-developers@lists.sourceforge.net"
8 #recipients="bvanassche@acm.org"
9 if [ $# -ge 3 ]; then
10 gzip -9 <"$3" >"$3.gz"
11 mutt -s "$1" -a "$3.gz" ${recipients} < "$2"
12 rm -f "$3.gz"
13 else
14 mutt -s "$1" ${recipients} < "$2"