diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-07-28 16:16:13 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-07-28 16:16:13 +0000 |
commit | 7301e74a9bfbf0abaf2782bc2b7112a84bcd32c8 (patch) | |
tree | d7c878d5f6eb90b1a132cc200b44ea022c9fa144 /rcfile_y.y | |
parent | f7aef23b0c18a1ee4724f9e10984427cdee07c5d (diff) | |
download | fetchmail-7301e74a9bfbf0abaf2782bc2b7112a84bcd32c8.tar.gz fetchmail-7301e74a9bfbf0abaf2782bc2b7112a84bcd32c8.tar.bz2 fetchmail-7301e74a9bfbf0abaf2782bc2b7112a84bcd32c8.zip |
Added the dropstatus option.
svn path=/trunk/; revision=1183
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -62,7 +62,7 @@ extern char * yytext; %token <proto> PROTO %token <sval> STRING %token <number> NUMBER -%token NO KEEP FLUSH FETCHALL REWRITE FORCECR STRIPCR PASS8BITS +%token NO KEEP FLUSH FETCHALL REWRITE FORCECR STRIPCR PASS8BITS DROPSTATUS %token DNS PORT UIDL INTERVAL %% @@ -227,6 +227,7 @@ user_option : TO localnames HERE | FORCECR {current.forcecr = FLAG_TRUE;} | STRIPCR {current.stripcr = FLAG_TRUE;} | PASS8BITS {current.pass8bits = FLAG_TRUE;} + | DROPSTATUS {current.dropstatus = FLAG_TRUE;} | NO KEEP {current.keep = FLAG_FALSE;} | NO FLUSH {current.flush = FLAG_FALSE;} @@ -234,6 +235,8 @@ user_option : TO localnames HERE | NO REWRITE {current.rewrite = FLAG_FALSE;} | NO FORCECR {current.forcecr = FLAG_FALSE;} | NO STRIPCR {current.stripcr = FLAG_FALSE;} + | NO PASS8BITS {current.pass8bits = FLAG_FALSE;} + | NO DROPSTATUS {current.dropstatus = FLAG_FALSE;} | LIMIT NUMBER {current.limit = $2;} | FETCHLIMIT NUMBER {current.fetchlimit = $2;} |