aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-07-01 13:34:49 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-07-01 13:34:49 +0000
commit2513ea1bb193ad13166122ae63879078282b5612 (patch)
tree2519f27c771acae78df10614a8aa09a767bb5945 /rcfile_l.l
parent3a854764c9fe5ce324c1f14fd70fc84bd8cfad27 (diff)
downloadfetchmail-2513ea1bb193ad13166122ae63879078282b5612.tar.gz
fetchmail-2513ea1bb193ad13166122ae63879078282b5612.tar.bz2
fetchmail-2513ea1bb193ad13166122ae63879078282b5612.zip
Make imap-k4 a legal protocol identifier.
svn path=/trunk/; revision=1129
Diffstat (limited to 'rcfile_l.l')
-rw-r--r--rcfile_l.l1
1 files changed, 1 insertions, 0 deletions
diff --git a/rcfile_l.l b/rcfile_l.l
index bae66f0c..c1234fcf 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -81,6 +81,7 @@ options {/* EMPTY */}
(auto)|(AUTO) { yylval.proto = P_AUTO; return PROTO; }
(pop2)|(POP2) { yylval.proto = P_POP2; return PROTO; }
(pop3)|(POP3) { yylval.proto = P_POP3; return PROTO; }
+(imap-k4)|(IMAP-K4) { yylval.proto = P_IMAP_K4; return PROTO; }
(imap)|(IMAP) { yylval.proto = P_IMAP; return PROTO; }
(apop)|(APOP) { yylval.proto = P_APOP; return PROTO; }
(etrn)|(ETRN) { yylval.proto = P_ETRN; return PROTO; }