I'd like to get fetchmail to retrieve my mail after I login to my ppp account, so I can read mail offline. I tried to get fetchmail to pop my mail (without ssh) with this rc file:
set daemon 300 # Poll at 5-minute intervals set logfile .fetchlog poll hostname.org protocol POP3 username USERNAME password XXXXXXXX but I get this in the log file: fetchmail: starting fetchmail 4.6.4 daemon fetchmail: 4.6.4 querying hostname.org (protocol POP3) at Sun Jun 4 16:51:08 2000 fetchmail: fetchmail: POP3 connection to hostname.org failed: Connection refused fetchmail: terminated with signal 15 Eventually I want to set up fetchmail with ssh as described in /usr/doc/fetchmail/FAQ.gz. I tried what's described there with this rc file: set logfile .fetchmaillog poll hostname.org port 1234 via localhost with proto pop3 keep fetchall: preconnect "ssh -f -L 1234:hostname.org:110 hostname.org sleep 20 </dev/null >/dev/null"; and I got this as stdout: $ fetchmail -v -v Enter password for [EMAIL PROTECTED]: fetchmail: 4.6.4 querying hostname.org (protocol POP3) at Sun Jun 4 18:37:10 2000 Enter passphrase for RSA key '[EMAIL PROTECTED]': fwd connect from localhost to local port sshdfwd-1234 fetchmail: POP3< +OK POP3 hostname.org v7.59 server ready fetchmail: POP3> USER USERNAME fetchmail: POP3< +OK User name accepted, password please fetchmail: POP3> PASS * fetchmail: POP3< +OK Mailbox open, 0 messages fetchmail: selecting or re-polling default folder fetchmail: POP3> STAT fetchmail: POP3< +OK 0 0 fetchmail: No mail for USERNAME at hostname.org fetchmail: POP3> QUIT fetchmail: POP3< +OK Sayonara fetchmail: Query status=1 fetchmail: normal termination, status 1 I know I had mail, read and unread, that didn't get transfered What am I doing wrong? What am I doing right?? For the second example, should I set the port to something besides the arbritrary 1234? Is there a problem with fetchmail and exim working together? Any suggestions? Please cc: to me, as I am not subscribed to the list. Thanks in advance. P.S. Debian rules!