]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Changed single recipient into a list of recipients and fixed mutt subject and attachm...
authorBart Van Assche <bvanassche@acm.org>
Mon, 12 Jan 2009 13:06:47 +0000 (13:06 +0000)
committerBart Van Assche <bvanassche@acm.org>
Mon, 12 Jan 2009 13:06:47 +0000 (13:06 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8941

nightly/conf/georgia-tech-cellbuzz-native.sendmail

index 0b8f32f5f869b85424f80bd4dfb8aeb388cd1edc..55aa351e97e0a0fa6b0348044266295104c99f8a 100755 (executable)
@@ -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