aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-06-03 23:28:48 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-06-03 23:28:48 +0000
commit1e25de25e76f417760f1b26230a829a7d609a72e (patch)
treeaa866c1f38fc14ae8a6af35b2fcfea14b844093f
parente78aafbb0eb8166d378d14b3be0966fd3254f63c (diff)
downloadfetchmail-1e25de25e76f417760f1b26230a829a7d609a72e.tar.gz
fetchmail-1e25de25e76f417760f1b26230a829a7d609a72e.tar.bz2
fetchmail-1e25de25e76f417760f1b26230a829a7d609a72e.zip
Autoprobing works.
svn path=/trunk/; revision=1886
-rw-r--r--NEWS2
-rwxr-xr-xfetchmailconf15
2 files changed, 14 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index d35fa3da..32890bb4 100644
--- a/NEWS
+++ b/NEWS
@@ -8,7 +8,7 @@
------------------------------------------------------------------------------
fetchmail-4.4.9 ():
-* 0.92 version of fetchmailconf.
+* 0.92 version of fetchmailconf (now with autoprobing for servers!).
* Merging of command-line argument has been fixed (I think!).
* Make fetchmail 64-bit clean (thanks to John Franklin <john@iptimaging.com>).
* Fix man-page installation (thanks to Kevin Hawkins <khawkins@ncsa.uiuc.edu>).
diff --git a/fetchmailconf b/fetchmailconf
index ea10ab80..adf029e9 100755
--- a/fetchmailconf
+++ b/fetchmailconf
@@ -706,9 +706,16 @@ These options control the remote-mail protocol
and TCP/IP service port used to query this
server.
+If you click the `Probe for a server' button, fetchmail
+will try to find you the most capable server on the
+selected host (this will only work if you're conncted
+to the Internet). The probe only checks for ordinary
+IMAP and POP protocols; fortunately these are the most
+frequently supported.
+
The `Protocol' button bar offers you a choice of
all the different protocols available. The `auto'
-protocol is a special mode that probes the host
+protocol is the default mode; it probes the host
ports for POP3 and IMAP to see if either is
available.
@@ -905,7 +912,11 @@ class ServerEdit(Frame, MyWidget):
confwin = Toplevel()
if greetline == None:
title = "Autoprobe of " + realhost + " failed"
- confirm = "I didn't find any mailservers active."
+ confirm = """
+Fetchmail didn't find any mailservers active.
+This could mean the host doesn't support any,
+or just that your Internet connection is down.
+"""
else:
title = "Autoprobe of " + realhost + " succeeded"
confirm = "The " + protocol + " server said:\n\n" + greetline