blob: eaf56bdf20700d5336d66155b32abd1654484374 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
test "$SEND_ANNOUNCEMENTS" = doit || { echo "read the source, luke! -> $0" ; cat "$0" ; exit 1 ; }
ANN=fetchmail-EN-2010-03
FILE=$HOME/VCS-mine/fetchmail.git/$ANN.txt
test -r $FILE || { echo "Cannot find $FILE." ; exit 1 ; }
SUBJECT="fetchmail erratum notice $ANN"
MAILER=mail
$MAILER -r matthias.andree@gmx.de -s "$SUBJECT" <$FILE \
vendor-sec@lst.de \
fetchmail-announce@lists.sourceforge.net
|