aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf.py
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2008-02-25 23:54:19 +0000
committerMatthias Andree <matthias.andree@gmx.de>2008-02-25 23:54:19 +0000
commite67561249eaa7bf8b9aed6633ade6e67a0806d73 (patch)
tree062e3585bb4c3a061b2b9a1a6b556c87d818df0a /fetchmailconf.py
parentc60a3bc7948aa8590da7282d0826d132a90c5b04 (diff)
downloadfetchmail-e67561249eaa7bf8b9aed6633ade6e67a0806d73.tar.gz
fetchmail-e67561249eaa7bf8b9aed6633ade6e67a0806d73.tar.bz2
fetchmail-e67561249eaa7bf8b9aed6633ade6e67a0806d73.zip
quote folder name when writing configuration, Berlios Bug #13207, report + fix by Terry Brown.
svn path=/branches/BRANCH_6-3/; revision=5163
Diffstat (limited to 'fetchmailconf.py')
-rwxr-xr-xfetchmailconf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf.py b/fetchmailconf.py
index 41c4d398..3c7f5c38 100755
--- a/fetchmailconf.py
+++ b/fetchmailconf.py
@@ -5,7 +5,7 @@
# Matthias Andree <matthias.andree@gmx.de>
# Requires Python with Tkinter, and the following OS-dependent services:
# posix, posixpath, socket
-version = "1.52 $Revision$"
+version = "1.53 $Revision$"
from Tkinter import *
from Dialog import *
@@ -397,7 +397,7 @@ class User:
if self.mailboxes:
res = res + " folder"
for x in self.mailboxes:
- res = res + " " + x
+ res = res + ' "%s"' % x
res = res + "\n"
for fld in ('smtpaddress', 'preconnect', 'postconnect', 'mda', 'bsmtp', 'properties'):
if getattr(self, fld):