5 # Note this drops the mail as file to be picked up by another script
6 # that will actually sent it (this machine cannot directly sent email).
7 MAILFILE="$HOME/valgrind-results/$(date +%d-%b-%Y.%R)"
9 echo "Subject: $subject" >> $MAILFILE
10 echo "To: valgrind-testresults@lists.sourceforge.net" >> $MAILFILE
11 echo "Bcc: valgrind@wildebeest.org" >> $MAILFILE
13 cat "$summary" >> $MAILFILE
15 cat "$diffs" >> $MAILFILE
17 MAILLATEST="$HOME/valgrind-results/latest"
19 ln -s $MAILFILE $MAILLATEST