aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2000-03-06 06:34:46 +0000
committerEric S. Raymond <esr@thyrsus.com>2000-03-06 06:34:46 +0000
commit65b310a77efb75cd01d355df779cf4721156f89e (patch)
tree53c41d5c9db2ffeb91546fb12c5071d8fc97e10d /rcfile_l.l
parent2cc82b76e6597d6d5c984a27abf041666ed7aa1b (diff)
downloadfetchmail-65b310a77efb75cd01d355df779cf4721156f89e.tar.gz
fetchmail-65b310a77efb75cd01d355df779cf4721156f89e.tar.bz2
fetchmail-65b310a77efb75cd01d355df779cf4721156f89e.zip
Implemented support for RFC2177 IDLE command.
svn path=/trunk/; revision=2790
Diffstat (limited to 'rcfile_l.l')
-rw-r--r--rcfile_l.l4
1 files changed, 3 insertions, 1 deletions
diff --git a/rcfile_l.l b/rcfile_l.l
index 32e274cc..559bd152 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -130,7 +130,8 @@ noforcecr |
nostripcr |
nopass8(bits)? |
nodropstatus |
-nomimedec(ode)? {
+nomimedec(ode)? |
+noidle {
yyless(2);
return NO;
}
@@ -146,6 +147,7 @@ stripcr { return STRIPCR; }
pass8(bits)? { return PASS8BITS; }
dropstatus { return DROPSTATUS; }
mimedec(ode)? { return MIMEDECODE; }
+idle { return IDLE; }
dns { return DNS; }
uidl { return UIDL; }
ssl { return SSL; }