diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-12-12 04:10:56 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-12-12 04:10:56 +0000 |
commit | c4432b4997d1819dbfd289ba42050e20927bde08 (patch) | |
tree | ee783faef2c11861e8b0361a9c5839100063451b /rcfile_y.y | |
parent | 6113a3f6da6b0fc667c9f56b99ad5c6419947b1c (diff) | |
download | fetchmail-c4432b4997d1819dbfd289ba42050e20927bde08.tar.gz fetchmail-c4432b4997d1819dbfd289ba42050e20927bde08.tar.bz2 fetchmail-c4432b4997d1819dbfd289ba42050e20927bde08.zip |
Spambounce patch.
svn path=/trunk/; revision=2998
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -65,7 +65,8 @@ extern char * yytext; %token NETSEC INTERFACE MONITOR PLUGIN PLUGOUT %token IS HERE THERE TO MAP WILDCARD %token BATCHLIMIT FETCHLIMIT EXPUNGE PROPERTIES -%token SET LOGFILE DAEMON SYSLOG IDFILE INVISIBLE POSTMASTER BOUNCEMAIL SHOWDOTS +%token SET LOGFILE DAEMON SYSLOG IDFILE INVISIBLE POSTMASTER BOUNCEMAIL +%token SPAMBOUNCE SHOWDOTS %token <proto> PROTO %token <sval> STRING %token <number> NUMBER @@ -94,6 +95,8 @@ statement : SET LOGFILE optmap STRING {run.logfile = xstrdup($4);} | SET POSTMASTER optmap STRING {run.postmaster = xstrdup($4);} | SET BOUNCEMAIL {run.bouncemail = TRUE;} | SET NO BOUNCEMAIL {run.bouncemail = FALSE;} + | SET SPAMBOUNCE {run.spambounce = TRUE;} + | SET NO SPAMBOUNCE {run.spambounce = FALSE;} | SET PROPERTIES optmap STRING {run.properties =xstrdup($4);} | SET SYSLOG {run.use_syslog = TRUE;} | SET INVISIBLE {run.invisible = TRUE;} |