diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-08-06 00:18:41 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2009-08-06 00:18:41 +0000 |
commit | 4de85d854ded68df6bce92c67d4f6cc25a3fe414 (patch) | |
tree | d993d7f65598d904f7f898b99070ecce22c4f645 /dist-tools/send-security-announce.sh | |
parent | ea6638d559927428011b0f3f7b5b092cfeb6c587 (diff) | |
download | fetchmail-4de85d854ded68df6bce92c67d4f6cc25a3fe414.tar.gz fetchmail-4de85d854ded68df6bce92c67d4f6cc25a3fe414.tar.bz2 fetchmail-4de85d854ded68df6bce92c67d4f6cc25a3fe414.zip |
Update.
svn path=/branches/BRANCH_6-3/; revision=5401
Diffstat (limited to 'dist-tools/send-security-announce.sh')
-rwxr-xr-x | dist-tools/send-security-announce.sh | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/dist-tools/send-security-announce.sh b/dist-tools/send-security-announce.sh index 6ace729c..2fe60265 100755 --- a/dist-tools/send-security-announce.sh +++ b/dist-tools/send-security-announce.sh @@ -1,16 +1,15 @@ test "$SEND_ANNOUNCEMENTS" = doit || { echo "read the source, luke! -> $0" ; cat "$0" ; exit 1 ; } -ANN=fetchmail-SA-2008-02 -FILE=$HOME/mywork/fetchmail/BRANCH_6-3/$ANN.txt +ANN=fetchmail-SA-2009-01 +FILE=$HOME/VCS-mine/fetchmail.svn/BRANCH_6-3/$ANN.txt test -r $FILE || { echo "Cannot find $FILE." ; exit 1 ; } CVE=$(sed -n '/^CVE Name:/ { s/^.*:[ ]*//p;q; }' $FILE) SUBJECT="fetchmail security announcement $ANN ($CVE)" +MAILER=mail -nail -r ma+nomail@dt.e-technik.uni-dortmund.de -s "$SUBJECT" <$FILE \ - vulnwatch@vulnwatch.org - -nail -r ma+bt@dt.e-technik.uni-dortmund.de -s "$SUBJECT" <$FILE \ +$MAILER -r ma+bt@dt.e-technik.uni-dortmund.de -s "$SUBJECT" <$FILE \ bugtraq@securityfocus.com -nail -r matthias.andree@gmx.de -s "$SUBJECT" <$FILE \ - vendor-sec@lst.de fetchmail-announce@lists.berlios.de +$MAILER -r matthias.andree@gmx.de -s "$SUBJECT" <$FILE \ + vendor-sec@lst.de \ + fetchmail-announce@lists.berlios.de |