diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-07-31 05:54:41 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-07-31 05:54:41 +0000 |
commit | 2dd4055cf26d85600a22205ae6e9ed668d614f26 (patch) | |
tree | be3d15a8fbe7aa76b2310149633b677f08c5b53d /rcfile_y.y | |
parent | 2cb642fc7d5ad94fe4c48a5d0ec198ab0ac423e9 (diff) | |
download | fetchmail-2dd4055cf26d85600a22205ae6e9ed668d614f26.tar.gz fetchmail-2dd4055cf26d85600a22205ae6e9ed668d614f26.tar.bz2 fetchmail-2dd4055cf26d85600a22205ae6e9ed668d614f26.zip |
Must solve that damn linking problem next.
svn path=/trunk/; revision=3426
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -100,8 +100,11 @@ statement : SET LOGFILE optmap STRING {run.logfile = xstrdup($4);} | SET NO SPAMBOUNCE {run.spambounce = FALSE;} | SET PROPERTIES optmap STRING {run.properties =xstrdup($4);} | SET SYSLOG {run.use_syslog = TRUE;} + | SET NO SYSLOG {run.use_syslog = FALSE;} | SET INVISIBLE {run.invisible = TRUE;} + | SET NO INVISIBLE {run.invisible = FALSE;} | SET SHOWDOTS {run.showdots = TRUE;} + | SET NO SHOWDOTS {run.showdots = FALSE;} /* * The way the next two productions are written depends on the fact that |