aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
diff options
context:
space:
mode:
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-xfetchmailconf9
1 files changed, 5 insertions, 4 deletions
diff --git a/fetchmailconf b/fetchmailconf
index 31d1068f..9f232411 100755
--- a/fetchmailconf
+++ b/fetchmailconf
@@ -9,6 +9,7 @@
# Version 0.91 beta: Tue Jun 2 12:23:42 EDT 1998
# Version 0.92 beta: Wed Jun 3 14:17:03 EDT 1998
# Version 0.93 beta: Wed Jun 3 19:46:06 EDT 1998
+# Version 0.94 beta: Thu Jun 4 12:09:06 EDT 1998
#
# TO DO: Arrange for save and quit buttons to clean up all frames dependent
# on the current ones.
@@ -147,11 +148,11 @@ class Server:
str = str + " "
if self.interface:
- str = str + "interface " + self.interface
+ str = str + "interface \"" + self.interface + "\""
if self.monitor:
- str = str + "monitor " + self.monitor
+ str = str + "monitor \"" + self.monitor + "\""
if self.netsec:
- str = str + "netsec " + self.netsec
+ str = str + "netsec \"" + self.netsec + "\""
if self.interface or self.monitor or self.netsec:
if folded:
str = str + "\n"
@@ -222,7 +223,7 @@ class User:
str = " "
str = str + "user \"" + self.remote + "\" there ";
if self.password:
- str = str + "with password " + self.password + ' '
+ str = str + "with password \"" + self.password + '" '
if self.localnames:
str = str + "is"
for x in self.localnames: