aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_y.y
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-06-05 06:57:59 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-06-05 06:57:59 +0000
commit3e1dcfa582687258c8ef93604bd6882e9b3e40c6 (patch)
tree3b74bc8a5d511e8b900653d9d5a400e583072f1e /rcfile_y.y
parent6fa2bfb1da93ab763e3df6d8bf1ae9e0fa6a99a1 (diff)
downloadfetchmail-3e1dcfa582687258c8ef93604bd6882e9b3e40c6.tar.gz
fetchmail-3e1dcfa582687258c8ef93604bd6882e9b3e40c6.tar.bz2
fetchmail-3e1dcfa582687258c8ef93604bd6882e9b3e40c6.zip
Tracepolls switch implemented.
svn path=/trunk/; revision=3337
Diffstat (limited to 'rcfile_y.y')
-rw-r--r--rcfile_y.y3
1 files changed, 3 insertions, 0 deletions
diff --git a/rcfile_y.y b/rcfile_y.y
index ba17b9b9..e2c4c82c 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -75,6 +75,7 @@ extern char * yytext;
%token DNS SERVICE PORT UIDL INTERVAL MIMEDECODE IDLE CHECKALIAS
%token SSL SSLKEY SSLCERT SSLPROTO SSLCERTCK SSLCERTPATH SSLFINGERPRINT
%token PRINCIPAL
+%token TRACEPOLLS
%%
@@ -234,6 +235,8 @@ serv_option : AKA alias_list
| DNS {current.server.dns = FLAG_TRUE;}
| NO DNS {current.server.dns = FLAG_FALSE;}
| NO ENVELOPE {current.server.envelope = STRING_DISABLED;}
+ | TRACEPOLLS {current.tracepolls = FLAG_TRUE;}
+ | NO TRACEPOLLS {current.tracepolls = FLAG_FALSE;}
;
userspecs : user1opts {record_current(); user_reset();}