aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-10-26 16:59:40 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-10-26 16:59:40 +0000
commitbcc60aebf68fd7839c708a623048636a03f05043 (patch)
tree0389176aa6d9efb7805f4d4ca57bd93cc848b31e /fetchmailconf
parent95e4bd1d82098ed08d978a2626d32ccc71ca19e7 (diff)
downloadfetchmail-bcc60aebf68fd7839c708a623048636a03f05043.tar.gz
fetchmail-bcc60aebf68fd7839c708a623048636a03f05043.tar.bz2
fetchmail-bcc60aebf68fd7839c708a623048636a03f05043.zip
Fix handling of properties option.
svn path=/trunk/; revision=2136
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-xfetchmailconf4
1 files changed, 1 insertions, 3 deletions
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: