diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | fetchmail-FAQ.html | 6 | ||||
-rwxr-xr-x | fetchmailconf | 8 |
3 files changed, 12 insertions, 4 deletions
@@ -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 @@ <table width="100%" cellpadding=0><tr> <td width="30%">Back to <a href="index.html">Fetchmail Home Page</a> <td width="30%" align=center>To <a href="/~esr/sitemap.html">Site Map</a> -<td width="30%" align=right>$Date: 1999/02/10 01:52:40 $ +<td width="30%" align=right>$Date: 1999/02/19 15:53:53 $ </table> <HR> <H1>Frequently Asked Questions About Fetchmail</H1> @@ -1656,7 +1656,7 @@ directly by fetchmail, either).<p> <hr> <h2><a name="R5">R5. Running fetchmail in daemon mode doesn't work.</a><br></h2> -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.<P> @@ -2251,7 +2251,7 @@ Re-ordering messages is a user-agent function, anyway.<P> <table width="100%" cellpadding=0><tr> <td width="30%">Back to <a href="index.html">Fetchmail Home Page</a> <td width="30%" align=center>To <a href="/~esr/sitemap.html">Site Map</a> -<td width="30%" align=right>$Date: 1999/02/10 01:52:40 $ +<td width="30%" align=right>$Date: 1999/02/19 15:53:53 $ </table> <P><ADDRESS>Eric S. Raymond <A HREF="mailto:esr@thyrsus.com"><esr@snark.thyrsus.com></A></ADDRESS> 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): @@ -1171,6 +1172,11 @@ 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 + """ I see an IMAP4rev1 server. Excellent. This is (a) the best kind of |