diff options
author | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2009-01-12 13:06:47 +0000 |
---|---|---|
committer | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2009-01-12 13:06:47 +0000 |
commit | 70dbf4e12b516d5b1a429e945be4c22748c77fb6 (patch) | |
tree | 92d8e4115ae87d096fcf69542e9af192dc7008fb /nightly | |
parent | 0bae227b460fe9cf493c4487c1015c273990a5ee (diff) |
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 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'nightly')
-rwxr-xr-x | nightly/conf/georgia-tech-cellbuzz-native.sendmail | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nightly/conf/georgia-tech-cellbuzz-native.sendmail b/nightly/conf/georgia-tech-cellbuzz-native.sendmail index 0b8f32f5..55aa351e 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 |