aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-10-20 02:56:15 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-10-20 02:56:15 +0000
commit3f1aa9d3e3b1045876859756f6ca03984866db7c (patch)
tree5d7c28bee39f8bfa5d231afb21c49964c3a3d90d /fetchmailconf
parent623fc9be6a9fb63a01f30ddb0e6524460f720408 (diff)
downloadfetchmail-3f1aa9d3e3b1045876859756f6ca03984866db7c.tar.gz
fetchmail-3f1aa9d3e3b1045876859756f6ca03984866db7c.tar.bz2
fetchmail-3f1aa9d3e3b1045876859756f6ca03984866db7c.zip
Fix GSS and Kereberos handling.
svn path=/trunk/; revision=2112
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-xfetchmailconf3
1 files changed, 3 insertions, 0 deletions
diff --git a/fetchmailconf b/fetchmailconf
index 005acc4d..74302b90 100755
--- a/fetchmailconf
+++ b/fetchmailconf
@@ -307,6 +307,7 @@ defaultports = {"auto":0,
"APOP":110,
"KPOP":1109,
"IMAP":143,
+ "IMAP-GSS":143,
"IMAP-K4":143,
"ETRN":25}
@@ -879,6 +880,8 @@ class ServerEdit(Frame, MyWidget):
if 'imap' in feature_options:
protolist.append("IMAP")
if 'imap-gss' in feature_options:
+ protolist.append("IMAP-GSS")
+ if 'imap-k4' in feature_options:
protolist.append("IMAP-K4")
if 'etrn' in feature_options:
protolist.append("ETRN")