diff options
-rwxr-xr-x | fetchmailconf | 3 |
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") |