Package: cucipop Version: 1.31-7 Authentication via fetchmail works fine without APOP. Switching on APOP in fetchmailrc leads to a complaint of cucipop about unknown username/password.
-- System Information Debian Release: potato Kernel Version: Linux melchi.fuller.edu 2.2.1 #2 Tue Feb 9 21:53:28 PST 1999 i486 unknown Versions of the packages cucipop depends on: ii netbase 3.14-2 Basic TCP/IP networking binaries ii netstd 3.07-7 Networking binaries and daemons for Linux ii libc6 2.1.1-0.2 GNU C Library: shared libraries ii libdb2 2.4.14-5 The Berkeley database routines (run-time fil --- Begin /etc/init.d/cucipop (modified conffile) #!/bin/sh # run_cucipop=0 cucipop_options="-Ya" PATH=/bin:/usr/bin:/sbin:/usr/sbin DAEMON=/usr/sbin/cucipop NAME=cucipop FLAGS="defaults 50" test -f $DAEMON || exit 0 case "$1" in start) if [ $run_cucipop = 1 ] then echo -n "Starting pop daemon: " if start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \ --exec $DAEMON -- $cucipop_options then echo $NAME. else echo fi fi ;; stop) if [ $run_cucipop = 1 ] then echo -n "Stopping pop daemon: " if start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \ --exec $DAEMON then echo $NAME. else echo fi fi ;; restart) $0 force-reload ;; force-reload) if [ $run_cucipop = 0 ]; then exit 0; fi echo -n "Restarting $NAME daemon." /etc/init.d/$NAME stop > /dev/null 2>&1 echo -n "." sleep 2 echo -n "." if start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \ --exec $DAEMON -- $cucipop_options then echo "done." else echo fi ;; *) echo "Usage: /etc/init.d/$NAME {start|stop|restart|force-reload}" exit 1 ;; esac exit 0 --- End /etc/init.d/cucipop