aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
Commit message (Expand)AuthorAgeFilesLines
* Sunil's transaction patches.Eric S. Raymond2003-10-151-0/+13
* Ready to ship.Eric S. Raymond2003-08-061-0/+7
* First round ofmlong-delayed bug fixes.Eric S. Raymond2003-07-171-2/+2
* Routine updates, including the latest Shetye patch.Eric S. Raymond2002-12-261-7/+0
* OTP fix patches from Stanislav Brabec.Eric S. Raymond2002-10-181-1/+1
* Default to empty antispam list.Eric S. Raymond2002-09-131-35/+35
* Detect and warn about geonet.de.Eric S. Raymond2002-09-061-0/+6
* Debian 5.9.10 fixes.Eric S. Raymond2002-04-011-2/+4
* Auth failure on the GMX servers.Eric S. Raymond2002-03-151-0/+7
* Expose the ESMTP name and password options.Eric S. Raymond2002-03-101-24/+35
* Minor fixes for 5.9.8.Eric S. Raymond2002-02-151-1/+9
* 2.2 compatibility.Eric S. Raymond2002-02-011-5/+5
* Easy bug fixes for this round.Eric S. Raymond2001-11-081-4/+4
* Force "." onto front of execution path.Eric S. Raymond2001-09-231-1177/+1181
* Pre-1.5.2 compatibilty.Eric S. Raymond2001-09-091-1/+2
* Ready to ship.Eric S. Raymond2001-07-311-3/+4
* Fix the plugin/plugout problem.Eric S. Raymond2001-07-311-5/+5
* HMH's trivial fixes.Eric S. Raymond2001-07-251-2/+1
* Dump plugin and plugout options properly.Eric S. Raymond2001-07-071-2/+6
* Close debian bug that clobbered .fetchmailorc.Eric S. Raymond2001-07-071-2/+7
* Issue RSET before QUIT if keep is enabled.Eric S. Raymond2001-07-061-0/+2
* Don't rely on snprintf.Eric S. Raymond2001-07-041-0/+7
* Implemented fetchdomains.Eric S. Raymond2001-06-241-619/+631
* Miscellaneous bug fixes.Eric S. Raymond2001-06-201-5/+5
* HMH fixes.Eric S. Raymond2001-06-171-14/+14
* Tracepolls switch implemented.Eric S. Raymond2001-06-051-2/+7
* SSL certification handling.Eric S. Raymond2001-05-141-4/+26
* Note that cucipop doesn't lock the mailbox.Eric S. Raymond2001-03-141-0/+3
* Security fix.Eric S. Raymond2001-03-121-3/+3
* spambounce option patch.Eric S. Raymond2001-03-051-2/+2
* fetchmailconf warning code from hmh.Eric S. Raymond2001-03-041-3/+19
* Added sslproto.Eric S. Raymond2001-03-031-2/+5
* preauth -> auth.Eric S. Raymond2001-02-191-8/+8
* Looks like we've got the new authentication logic done.Eric S. Raymond2001-02-121-12/+6
* Warn about pop3ad server.Eric S. Raymond2001-02-101-2/+10
* First cut at ODMR support.Eric S. Raymond2001-02-071-5/+13
* Obvious bug fixes for 5.6.3.Eric S. Raymond2001-02-071-6/+8
* Fix the "principal" problem.Eric S. Raymond2000-12-231-13/+12
* Spambounce patch.Eric S. Raymond2000-12-121-0/+18
* Minor bugfixes.Eric S. Raymond2000-12-011-2/+2
* Correction.Eric S. Raymond2000-11-27ss="nb">echo echo -n "Create $HOME/.fetchmailrc file? (Y/n) : " read ans if [ "$ans" = "n" -o "$ans" = "N" ]; then echo echo "Fetchsetup cancelled." echo exit 0 fi echo 'poll "'$SITE'"' > $HOME/.fetchmailrc echo "protocol $PROTO" >> $HOME/.fetchmailrc echo 'username "'$USR'"' >> $HOME/.fetchmailrc echo 'password "'$PASS'"' >> $HOME/.fetchmailrc PROCMAIL=`type -all procmail | sed -n "1 p" | cut -d' ' -f3` SENDMAIL=`type -all sendmail | sed -n "1 p" | cut -d' ' -f3` if [ ! "$PROCMAIL" = "" ]; then echo 'mda "'$PROCMAIL -d %s'"' >> $HOME/.fetchmailrc MDA="1" elif [ ! "$SENDMAIL" = "" ]; then echo 'mda "'$SENDMAIL %s'"' >> $HOME/.fetchmailrc MDA="2" else MDA="3" fi echo >> $HOME/.fetchmailrc echo echo "This is your $HOME/.fetchmailrc file." chmod 600 $HOME/.fetchmailrc echo cat $HOME/.fetchmailrc if [ ! "$MAIL" = "" ]; then echo "Fetchmail will retrieve your mail and put it in:" echo "$MAIL" if [ ! -f "$MAIL" ]; then touch $MAIL 2>/dev/null chmod 600 $MAIL 2>/dev/null fi fi echo if [ "$MDA" = "1" ]; then echo "I put that (m)ail (d)elivery (a)gent in .fetchmailrc" echo "because i found it on your system, this doesn't mean" echo "it's correct or the one you want to use." echo echo "The first time you run fetchmail, you should run it" echo "this way: # fetchmail -k" echo elif [ "$MDA" = "2" ]; then echo "You seem to have sendmail, sendmail will be used" echo "as the (m)ail (d)elivery (a)gent for fetchmail." echo echo "WARNING! There's no way to know if sendmail is set up" echo "properly for local mail delivery, so the first time you" echo "run fetchmail run it this way: # fetchmail -k" echo echo "If the mail that fetchmail retrieves is not put in your mailbox," echo "you'll know that sendmail is not set up properly for the delivery" echo "of local mail." echo elif [ "$MDA" = "3" ]; then echo "I Don't know what (m)ail (d)elivery (a)gent you're going to use." echo "You need a <mda> to deliver the mail to you, after <fetchmail> retrieves it." echo echo "Put the <mda> in your .fetchmailrc file, like below." echo "password $PASS" echo mda '"/usr/bin/procmail -d %s"' echo mda '"/usr/sbin/sendmail %s"' echo echo "The first time you run fetchmail, you should run it" echo "this way: # fetchmail -k" echo fi