diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-06-05 06:57:59 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-06-05 06:57:59 +0000 |
commit | 3e1dcfa582687258c8ef93604bd6882e9b3e40c6 (patch) | |
tree | 3b74bc8a5d511e8b900653d9d5a400e583072f1e /rcfile_y.y | |
parent | 6fa2bfb1da93ab763e3df6d8bf1ae9e0fa6a99a1 (diff) | |
download | fetchmail-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.y | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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();} |