From bcc60aebf68fd7839c708a623048636a03f05043 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 26 Oct 1998 16:59:40 +0000 Subject: Fix handling of properties option. svn path=/trunk/; revision=2136 --- fetchmailconf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'fetchmailconf') diff --git a/fetchmailconf b/fetchmailconf index a3b42fc0..87c8d774 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -273,8 +273,6 @@ class User: str = str + " batchlimit " + `self.batchlimit` if self.expunge != UserDefaults.expunge: str = str + " expunge " + `self.expunge` - if self.properties: - str = str + " properties " + `self.properties` str = str + "\n" trimmed = self.smtphunt; if trimmed != [] and trimmed[len(trimmed) - 1] == "localhost": @@ -291,7 +289,7 @@ class User: for x in self.mailboxes: str = str + " " + x str = str + "\n" - for fld in ('smtpaddress', 'preconnect', 'postconnect', 'mda'): + for fld in ('smtpaddress', 'preconnect', 'postconnect', 'mda', 'properties'): if getattr(self, fld): str = str + " %s %s\n" % (fld, `getattr(self, fld)`) if self.antispam != UserDefaults.antispam: -- cgit v1.2.3