diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-07-19 14:51:00 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-07-19 14:51:00 +0000 |
commit | 73799e479c5ff0f5788212cc06c35792c2da3149 (patch) | |
tree | bde01323a8d059a82c72b290b336ba12b3bad80b /rcfile_y.y | |
parent | c2398336ad81e3d7e9ff6ce76528bcc934367e40 (diff) | |
download | fetchmail-73799e479c5ff0f5788212cc06c35792c2da3149.tar.gz fetchmail-73799e479c5ff0f5788212cc06c35792c2da3149.tar.bz2 fetchmail-73799e479c5ff0f5788212cc06c35792c2da3149.zip |
Freeze bug fixes befoire adding more features.
svn path=/trunk/; revision=38
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -33,9 +33,13 @@ int yydebug; /* in case we didn't generate with -- debug */ %token KW_REMOTEFOLDER KW_LOCALFOLDER KW_MDA KW_EOL KW_DEFAULTS %token <proto> PROTO_POP2 PROTO_POP3 PROTO_IMAP PROTO_APOP PROTO_RPOP %token <sval> PARAM_STRING -%token <flag> KW_KEEP KW_FLUSH KW_FETCHALL +%token <flag> KW_KEEP KW_FLUSH KW_FETCHALL KW_REWRITE %type <proto> proto; +/* these are actually used by the lexer */ +%token TRUE 1 +%token FALSE 0 + %% rcfile: rcline @@ -68,6 +72,7 @@ serv_option_clause: | KW_KEEP {prc_setkeep($1);} | KW_FLUSH {prc_setflush($1);} | KW_FETCHALL {prc_setfetchall($1);} + | KW_REWRITE {prc_setrewrite($1);} ; proto: PROTO_POP2 |