From: Bart Van Assche Date: Mon, 12 Jan 2009 13:06:47 +0000 (+0000) Subject: Changed single recipient into a list of recipients and fixed mutt subject and attachm... X-Git-Tag: svn/VALGRIND_3_5_0~1102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f57314246f562f77117995b3e0c9c7b0804366c6;p=thirdparty%2Fvalgrind.git Changed single recipient into a list of recipients and fixed mutt subject and attachment arguments. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8941 --- diff --git a/nightly/conf/georgia-tech-cellbuzz-native.sendmail b/nightly/conf/georgia-tech-cellbuzz-native.sendmail index 0b8f32f5f8..55aa351e97 100755 --- a/nightly/conf/georgia-tech-cellbuzz-native.sendmail +++ b/nightly/conf/georgia-tech-cellbuzz-native.sendmail @@ -4,10 +4,10 @@ # Don't forget to set the from and realname variables in ~/.muttrc ! sender="bart.vanassche@gmail.com" -recipient="valgrind-developers@lists.sourceforge.net" -#recipient="bart.vanassche@gmail.com" +recipients="valgrind-developers@lists.sourceforge.net bart.vanassche@gmail.com" +#recipients="bart.vanassche@gmail.com" if [ $# -ge 3 ]; then - mutt -s -a "$3" "$1" "${recipient}" < "$2" + mutt -s "$1" -a "$3" ${recipients} < "$2" else - mutt -s "$1" "${recipient}" < "$2" + mutt -s "$1" ${recipients} < "$2" fi