From 083d202ec500dd27ce5511d960108bdd66f8a956 Mon Sep 17 00:00:00 2001 From: Michael Banack Date: Thu, 22 Apr 2010 12:35:57 -0700 Subject: Fixed set invisible bug in fetchmailconf.py Previously it was not saving the preference at all. --- fetchmailconf.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'fetchmailconf.py') diff --git a/fetchmailconf.py b/fetchmailconf.py index 9bfdda0d..2dc02d87 100755 --- a/fetchmailconf.py +++ b/fetchmailconf.py @@ -65,6 +65,8 @@ class Configuration: str = str + ("set properties \"%s\"\n" % (self.properties,)); if self.poll_interval > 0: str = str + "set daemon " + `self.poll_interval` + "\n" + if self.invisible: + str = str + ("set invisible\n") for site in self.servers: str = str + repr(site) return str -- cgit v1.2.3