From f42615e3e046f6e21e9ce337f36168372ecec8a5 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 19 Feb 1999 15:53:53 +0000 Subject: Minor updates. svn path=/trunk/; revision=2387 --- NEWS | 2 ++ fetchmail-FAQ.html | 6 +++--- fetchmailconf | 8 +++++++- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 99baf008..efd3e715 100644 --- a/NEWS +++ b/NEWS @@ -14,6 +14,8 @@ fetchmail-4.7.8 (): allows SMTP error bouncemail to be redirected from sender to local postmaster. * Suppress dancing progress dots when syslog is on. +* es.po update by Javier Kohen. +* Fixed fetchmailconf to handle `port' properly. There are 257 people on fetchmail-friends and 348 on fetchmail-announce. diff --git a/fetchmail-FAQ.html b/fetchmail-FAQ.html index 32b13cb3..37773842 100644 --- a/fetchmail-FAQ.html +++ b/fetchmail-FAQ.html @@ -10,7 +10,7 @@
Back to Fetchmail Home Page To Site Map -$Date: 1999/02/10 01:52:40 $ +$Date: 1999/02/19 15:53:53 $

Frequently Asked Questions About Fetchmail

@@ -1656,7 +1656,7 @@ directly by fetchmail, either).


R5. Running fetchmail in daemon mode doesn't work.

-We have one report from a Solaris 4.1.4 user that trying to run +We have one report from a SunOS 4.1.4 user that trying to run fetchmail in detached daemon mode doesn't work, but that using the same options with -N (nodetach) is OK.

@@ -2251,7 +2251,7 @@ Re-ordering messages is a user-agent function, anyway.

Back to Fetchmail Home Page To Site Map -$Date: 1999/02/10 01:52:40 $ +$Date: 1999/02/19 15:53:53 $

Eric S. Raymond <esr@snark.thyrsus.com>
diff --git a/fetchmailconf b/fetchmailconf index 2005c8da..247d9ef4 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -926,7 +926,8 @@ class ServerEdit(Frame, MyWidget): def refreshPort(self): proto = self.protocol.get() - self.port.set(defaultports[proto]) + if self.port.get() == 0: + self.port.set(defaultports[proto]) if not proto in ("POP3", "APOP", "KPOP"): self.uidl.state = DISABLED def user_edit(self, username, mode): @@ -1170,6 +1171,11 @@ To work around this, it is recommended that you set the `fetchall' option on all user entries associated with this server, so any stuck mail will be retrieved next time around. +""" + if string.find(greetline, "POP3 Server Ready") > 0: + warnings = warnings + """ +Some server that uses this greeting line has been observed to choke on +TOP %d 99999999. Use the fetchall option. if necessary, to force RETR. """ if string.find(greetline, "IMAP4rev1") > 0: warnings = warnings + """ -- cgit v1.2.3