aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Enable CompuServe users to suppress RPA.Eric S. Raymond1998-06-303-4/+11
* All the windows now have icons.Eric S. Raymond1998-06-301-8/+22
* Feature addition.Eric S. Raymond1998-06-301-0/+2
* Fix to OPIE code.Eric S. Raymond1998-06-302-2/+2
* Allow fetchmail to cope if the Tcl/Tk environment is too old.Eric S. Raymond1998-06-292-4/+9
* Discared From_ lines.Eric S. Raymond1998-06-292-8/+14
* ObiTuarY <obituary@freshmeat.net>'s change to support fetchmailconf.Eric S. Raymond1998-06-292-13/+40
* Enrico Musio's IP-checkalias patch.Eric S. Raymond1998-06-292-6/+8
* Enrico Musio's IP-checkalias patch.Eric S. Raymond1998-06-298-7/+65
* Argument fix.Eric S. Raymond1998-06-201-0/+7
* Duh. Synthesized record has to be declared active.Eric S. Raymond1998-06-171-0/+1
* Ready to ship.Eric S. Raymond1998-06-162-6/+6
* We're ready to ship 4.5.0.Eric S. Raymond1998-06-162-10/+2
* 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-124-64/+104
* Re-enable OPIE build.Eric S. Raymond1998-06-082-2/+2
* Associate icon with the root window.Eric S. Raymond1998-06-081-5/+4
* Associate icon with the root window.Eric S. Raymond1998-06-081-1/+10
* Fix the empty-file bug.Eric S. Raymond1998-06-071-0/+3
* Try this again.Eric S. Raymond1998-06-071-8/+12
* Better comments.Eric S. Raymond1998-06-071-0/+4
* Make it smart about APOP.Eric S. Raymond1998-06-071-3/+15
* Brendan Cully's fix for his fix.Eric S. Raymond1998-06-071-2/+2
* Nearly ready to ship.Eric S. Raymond1998-06-071-1/+6
* More from Gunter.Eric S. Raymond1998-06-071-1/+35
* Gunther Leber again.Eric S. Raymond1998-06-072-124/+134
* No more evals.Eric S. Raymond1998-06-061-11/+7
* Eliminate another eval.Eric S. Raymond1998-06-061-1/+1
* Eliminate `target'.Eric S. Raymond1998-06-061-7/+6
* Solaris 2.5.1 doesn't like ln -sfEric S. Raymond1998-06-061-1/+1
* Version bump.Eric S. Raymond1998-06-062-2/+2
* Doc fixes.Eric S. Raymond1998-06-062-9/+10
* Another update.Eric S. Raymond1998-06-051-6/+9
* Added a version tag.Eric S. Raymond1998-06-051-1/+2
* Shipping this to the list.Eric S. Raymond1998-06-051-1/+1
* Reinstate the fetchall kluge.Eric S. Raymond1998-06-055-17/+26
* Ready to release this guy.Eric S. Raymond1998-06-051-2/+3
* Solve Marty Lee's bug.Eric S. Raymond1998-06-051-11/+17
* Better comments.Eric S. Raymond1998-06-051-1/+2
* Chatty autoprobe.Eric S. Raymond1998-06-051-1/+1
* Chatty autoprobe.Eric S. Raymond1998-06-051-4/+36
* Better autoprobing.Eric S. Raymond1998-06-051-1/+37
* Minor markup fix.Eric S. Raymond1998-06-051-3/+3
* Fix a markup error.Eric S. Raymond1998-06-051-5/+5
* Fix new-user bug.Eric S. Raymond1998-06-051-2/+2
* Better configuration dumping.Eric S. Raymond1998-06-051-19/+23
* Catch configuration errors.Eric S. Raymond1998-06-051-6/+10
* Control verbosity.Eric S. Raymond1998-06-051-1/+1
* Now we can run tests.Eric S. Raymond1998-06-051-9/+18
w"> -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