From 2dd4055cf26d85600a22205ae6e9ed668d614f26 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 31 Jul 2001 05:54:41 +0000 Subject: Must solve that damn linking problem next. svn path=/trunk/; revision=3426 --- rcfile_y.y | 3 +++ 1 file changed, 3 insertions(+) (limited to 'rcfile_y.y') diff --git a/rcfile_y.y b/rcfile_y.y index e034d566..523be003 100644 --- a/rcfile_y.y +++ b/rcfile_y.y @@ -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 -- cgit v1.2.3