aboutsummaryrefslogtreecommitdiffstats
path: root/rpa.c
Commit message (Expand)AuthorAgeFilesLines
* License cleanups.Eric S. Raymond2001-09-301-0/+3
* _( -> GT_(Eric S. Raymond2001-09-261-41/+41
* Label save closes.Eric S. Raymond2000-01-311-1/+1
* Simplify error reporting further.Eric S. Raymond1999-02-031-55/+55
* Return of the dancing progress dots.Eric S. Raymond1999-02-011-17/+19
* Progress messages now go to stdout.Eric S. Raymond1999-01-051-64/+64
* First step towards splitting error from progress messages.Eric S. Raymond1999-01-051-48/+48
* Fix copyrights.Eric S. Raymond1998-12-041-3/+0
* Internationalization support via GNU gettext().Eric S. Raymond1998-11-261-41/+44
* More verbosity fixes.Eric S. Raymond1998-10-171-354/+354
* Introduced O_DEBUG.Eric S. Raymond1998-10-171-19/+19
* Make RPA less verbose.Eric S. Raymond1998-06-041-10/+22
* RPA fixes.Eric S. Raymond1998-06-031-26/+33
* Make RPA logging use error() rather than stderr.Eric S. Raymond1998-05-121-64/+67
* Fix -Wall warnings.Eric S. Raymond1998-03-171-0/+1
* Nailed.Eric S. Raymond1998-03-131-31/+31
* Enable conditioning out of POP3, IMAP, ETRN.Eric S. Raymond1997-10-041-2/+2
* Integrated RPA support.Eric S. Raymond1997-09-301-2/+6
* The code as I received it from Michael Palmer.Eric S. Raymond1997-09-301-0/+882
* Initial revisionEric S. Raymond1997-09-301-0/+0
-f $DAEMON || exit 0 case "$1" in start) echo -n "Starting mail retrieval agent: " if start-stop-daemon --start --quiet --exec $DAEMON; then echo "fetchmail." else echo "fetchmail already running."; fi ;; stop) echo -n "Stopping mail retrieval agent: " start-stop-daemon --stop --quiet --exec $DAEMON echo "fetchmail." ;; force-reload|restart) echo -n "Restarting mail retrieval agent: " start-stop-daemon --stop --quiet --exec $DAEMON start-stop-daemon --start --quiet --exec $DAEMON echo "fetchmail." ;; *) echo "Usage: /etc/init.d/fetchmail {start|stop|restart}" exit 1 ;; esac exit 0