From 33ee981f7123102a4686b4438abfcee3efe144ab Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Sat, 17 Sep 2005 13:17:42 +0000 Subject: Merge Sunil Shetye's --limitflush patch. svn path=/trunk/; revision=4289 --- rcfile_y.y | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'rcfile_y.y') diff --git a/rcfile_y.y b/rcfile_y.y index 48ddac9d..daff1a34 100644 --- a/rcfile_y.y +++ b/rcfile_y.y @@ -73,7 +73,7 @@ extern char * yytext; %token PROTO AUTHTYPE %token STRING %token NUMBER -%token NO KEEP FLUSH FETCHALL REWRITE FORCECR STRIPCR PASS8BITS +%token NO KEEP FLUSH LIMITFLUSH FETCHALL REWRITE FORCECR STRIPCR PASS8BITS %token DROPSTATUS DROPDELIVERED %token DNS SERVICE PORT UIDL INTERVAL MIMEDECODE IDLE CHECKALIAS %token SSL SSLKEY SSLCERT SSLPROTO SSLCERTCK SSLCERTPATH SSLFINGERPRINT @@ -308,6 +308,7 @@ user_option : TO localnames HERE | KEEP {current.keep = FLAG_TRUE;} | FLUSH {current.flush = FLAG_TRUE;} + | LIMITFLUSH {current.limitflush = FLAG_TRUE;} | FETCHALL {current.fetchall = FLAG_TRUE;} | REWRITE {current.rewrite = FLAG_TRUE;} | FORCECR {current.forcecr = FLAG_TRUE;} @@ -334,6 +335,7 @@ user_option : TO localnames HERE | NO KEEP {current.keep = FLAG_FALSE;} | NO FLUSH {current.flush = FLAG_FALSE;} + | NO LIMITFLUSH {current.limitflush = FLAG_FALSE;} | NO FETCHALL {current.fetchall = FLAG_FALSE;} | NO REWRITE {current.rewrite = FLAG_FALSE;} | NO FORCECR {current.forcecr = FLAG_FALSE;} -- cgit v1.2.3