From b1fabdf1b335942c08077df08f385b63d74dd770 Mon Sep 17 00:00:00 2001
From: "Eric S. Raymond" <esr@thyrsus.com>
Date: Thu, 23 Jul 1998 07:39:07 +0000
Subject: Dump antispam field as string, not list.

svn path=/trunk/; revision=2015
---
 conf.c | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/conf.c b/conf.c
index b98ac1d0..1ccbecf4 100644
--- a/conf.c
+++ b/conf.c
@@ -270,14 +270,21 @@ void dump_config(struct runctl *runp, struct query *querylist)
 	numdump("expunge", ctl->expunge);
 	listdump("smtphunt", ctl->smtphunt);
 	stringdump("smtpaddress", ctl->smtpaddress);
-	fprintf(stdout, "'antispam':[");
-	for (idp = ctl->antispam; idp; idp = idp->next)
+
+	indent('\0');
+	fprintf(stdout, "'antispam:'");
+	if (!ctl->antispam)
+	    fputs("'\n", stdout);
+	else
 	{
-	    fprintf(stdout, "%d", idp->val.status.num);
-	    if (idp->next)
-		fputs(", ", stdout);
+	    for (idp = ctl->antispam; idp; idp = idp->next)
+	    {
+		fprintf(stdout, "%d", idp->val.status.num);
+		if (idp->next)
+		    fputs(" ", stdout);
+	    }
+	    fputs("',\n", stdout);
 	}
-	fputs("],\n", stdout);
 	listdump("mailboxes", ctl->mailboxes);
 
 	indent('}');
-- 
cgit v1.2.3