aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail-features.html
Commit message (Expand)AuthorAgeFilesLines
...
* Added experimental SDPS support.Eric S. Raymond1998-08-031-2/+6
* Brendan Cully's fixes for GSSAPI.Eric S. Raymond1998-06-041-3/+3
* Various minor fixes.Eric S. Raymond1998-05-271-2/+6
* Henrik Storner's patch to support mimedecode.Eric S. Raymond1998-03-201-5/+8
* Kerberos V support.Eric S. Raymond1998-03-031-2/+4
* *** empty log message ***Eric S. Raymond1998-02-241-2/+5
* IPv6 and IPSECEric S. Raymond1998-02-161-2/+4
* Doc fix.Eric S. Raymond1997-12-181-3/+3
* Note that GSSAPI is supported.Eric S. Raymond1997-12-151-2/+4
* Integrated RPA support.Eric S. Raymond1997-09-301-2/+5
* First pass at OPIE 2.32 support.Eric S. Raymond1997-09-251-3/+3
* Cope with Post Office/NTEric S. Raymond1997-09-241-3/+4
* Added some servers.Eric S. Raymond1997-09-231-2/+4
* Initial revisionEric S. Raymond1997-08-051-0/+135
ght .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .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/bash 
RH=ftp.ccil.org
p=`\
echo dir /pub/esr/fetchmail/f\*src.rpm \
   | ftp $RH \
   | grep /pub/esr/fetchmail/fetchmail-[45] \
   | tail -1`
#p='-rw-r--r-- 1 23 wheel 478424 Dec 18 03:54 /pub/esr/fetchmail/fetchmail-4.7.1-1.src.rpm'
#echo $p | sed -e "s=^.^/pub=pub="
p1=`echo $p | sed -e "s=^.*/pub=pub="`
#echo $p1
#basename  $p1
#dirname $p1
d=`dirname $p1`
f=`basename $p1`
cd /work/incoming
email=$LOGNAME\@`hostname`
ftp -n <<ZZ
open $RH
user anonymous $email
cd /$d
get $f
bye
ZZ
rpm -K $f >/dev/null 2>&1 \
   || {
         rpm -K $f 2>&1 | mail $email -s "error getting $f"
         exit 
      }
rpm --rebuild  $f 2>&1 |\
   mail $email -s "Rebuilding $f"