aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xfetchmailconf.py2
1 files changed, 2 insertions, 0 deletions
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