From 2b4651b3546053c71d5566ab2f8b943a43de2354 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 20 Jul 1998 17:48:01 +0000 Subject: Can specify multiple spam-blocks now. svn path=/trunk/; revision=1997 --- rcfile_y.y | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'rcfile_y.y') diff --git a/rcfile_y.y b/rcfile_y.y index d6930b2a..d3af58b3 100644 --- a/rcfile_y.y +++ b/rcfile_y.y @@ -261,6 +261,18 @@ smtp_list : STRING {save_str(¤t.smtphunt, $1,TRUE);} | smtp_list STRING {save_str(¤t.smtphunt, $2,TRUE);} ; +num_list : NUMBER { + struct idlist *id; + id=save_str(¤t.antispam,0,0); + id->val.status.num = $1; + } + | num_list NUMBER { + struct idlist *id; + id=save_str(¤t.antispam,0,0); + id->val.status.num = $2; + } + ; + user_option : TO localnames HERE | TO localnames | IS localnames HERE @@ -271,7 +283,7 @@ user_option : TO localnames HERE | FOLDER folder_list | SMTPHOST smtp_list | SMTPADDRESS STRING {current.smtpaddress = xstrdup($2);} - | SPAMRESPONSE NUMBER {current.antispam = $2;} + | SPAMRESPONSE num_list | MDA STRING {current.mda = xstrdup($2);} | PRECONNECT STRING {current.preconnect = xstrdup($2);} | POSTCONNECT STRING {current.postconnect = xstrdup($2);} -- cgit v1.2.3