aboutsummaryrefslogtreecommitdiffstats
path: root/dist-tools/uploadfaq
blob: 7719ec985a69f2c43bc259cd5044e1f0572f1822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/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