aboutsummaryrefslogtreecommitdiffstats
path: root/website/fetchmail-SA-2009-01.txt
blob: a702a84ad77a3b3ca97ca15a7fff0b3ded20f60b (plain)
1
../fetchmail-SA-2009-01.txt
*/ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/bin/sh

echo >&2 "this script $0 is outdated. Abort."
exit 1

version=`sed -n '/VERSION *= *\(.*\)/s//\1/p' <Makefile`
echo "Uploading fetchmail version ${version} FAQ"

if [ $* ]
then
    ../upload $*
else
    lftp <<EOF
# First, copy to primary website
open ${WWWHOST}
cd ${WWWDIR}/fetchmail
put fetchmail-FAQ.html
close

# Next, upload to the ftp site
open locke.ccil.org
cd ~ftp/pub/esr/fetchmail
put FAQ
close
EOF
    echo "fetchmail FAQ uploaded"
fi