aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
Commit message (Expand)AuthorAgeFilesLines
...
* Postmaster option fix.Eric S. Raymond1998-11-171-0/+2
* Gerald Britton's support for mixed Kerberos and Hesiod.Eric S. Raymond1998-11-171-0/+24
* Added LMTP support.Eric S. Raymond1998-11-071-1/+10
* Added plugin/plugout option.Eric S. Raymond1998-11-021-0/+11
* New authfail handling.Eric S. Raymond1998-10-301-5/+0
* Rationalized timestamps.Eric S. Raymond1998-10-301-12/+2
* Better error direction.Eric S. Raymond1998-10-301-12/+30
* Send calling user mail on password failure in daemon mode.Eric S. Raymond1998-10-301-0/+11
* Added bsmtp option.Eric S. Raymond1998-10-281-1/+4
* Jonathan T. Agnew's massive code cleanup.Eric S. Raymond1998-10-261-36/+39
* PreventEric S. Raymond1998-10-221-1/+2
* -Wall cleanup.Eric S. Raymond1998-10-201-2/+1
* Make alloca safe.Eric S. Raymond1998-10-201-10/+7
* Added the `properties' option.Eric S. Raymond1998-10-201-0/+2
* Make authentication failures more visible by syslogging them.Eric S. Raymond1998-10-181-0/+5
* Introduced O_DEBUG.Eric S. Raymond1998-10-171-25/+25
* Now we can use --limit with daemon mode.Eric S. Raymond1998-10-161-11/+14
* Fixed postconnect option.Eric S. Raymond1998-10-141-0/+1
* Use alloca where possible.Eric S. Raymond1998-10-081-9/+4
* Always get fqdn for KPOP, whether or not DNS is enabled.Eric S. Raymond1998-09-131-10/+1
* Compute FQDN when Kerberos is in use.Eric S. Raymond1998-08-271-43/+32
* Gunther Leber's fix.Eric S. Raymond1998-08-241-8/+30
* Enclose string dumps in doublequotes to work with visbuf properly.Eric S. Raymond1998-08-181-6/+6
* Added experimental SDPS support.Eric S. Raymond1998-08-031-0/+3
* Eliminate agethostbyname call in non-ETRN modes.Eric S. Raymond1998-08-021-6/+40
* Improved security.Eric S. Raymond1998-08-021-0/+18
* Fixed the spam-block code.Eric S. Raymond1998-07-311-3/+3
* Cosmetic fix.Eric S. Raymond1998-07-291-2/+2
* Fix message.Eric S. Raymond1998-07-291-1/+1
* Avoid a silly core-dump.Eric S. Raymond1998-07-251-0/+1
* Chabge the spam-block default.Eric S. Raymond1998-07-201-0/+2
* Cosmetic fix.Eric S. Raymond1998-07-201-8/+9
* Cosmetic fix.Eric S. Raymond1998-07-201-1/+2
* Cosmetic fix.Eric S. Raymond1998-07-201-2/+1
* Can specify multiple spam-blocks now.Eric S. Raymond1998-07-201-5/+14
* Eliminate some DNS round trips.Eric S. Raymond1998-07-201-44/+31
* Added postmaster option.Eric S. Raymond1998-07-201-0/+13
* GSSAPI support is rockin'!Eric S. Raymond1998-07-201-3/+12
* Added nosyslog.Eric S. Raymond1998-07-141-1/+1
* Enrico Musio's IP-checkalias patch.Eric S. Raymond1998-06-291-1/+10
* Duh. Synthesized record has to be declared active.Eric S. Raymond1998-06-171-0/+1
* Another option fix from Gunther.Eric S. Raymond1998-06-161-7/+8
* Cosmetic fix.Eric S. Raymond1998-06-161-1/+1
* Ready to ship.Eric S. Raymond1998-06-121-7/+7
* Gunther Leber again.Eric S. Raymond1998-06-071-124/+133
* Solve Marty Lee's bug.Eric S. Raymond1998-06-051-11/+17
* Control verbosity.Eric S. Raymond1998-06-051-1/+1
* Brendan Cully's fixes for GSSAPI.Eric S. Raymond1998-06-041-3/+11
* Fix argument-merging.Eric S. Raymond1998-06-031-3/+71
* idfile processing patch.Eric S. Raymond1998-06-031-8/+9
pan> 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