diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-06-20 05:02:11 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-06-20 05:02:11 +0000 |
commit | 327eb432aa6884bf3bac6ef0dd6c63e0dc5198f2 (patch) | |
tree | a478a8d56ceaa437a8ed7ed99843ecff9b25e0b7 /fetchmailconf | |
parent | e95b8d68642cbd3b9a10509547e706db85a21883 (diff) | |
download | fetchmail-327eb432aa6884bf3bac6ef0dd6c63e0dc5198f2.tar.gz fetchmail-327eb432aa6884bf3bac6ef0dd6c63e0dc5198f2.tar.bz2 fetchmail-327eb432aa6884bf3bac6ef0dd6c63e0dc5198f2.zip |
Miscellaneous bug fixes.
svn path=/trunk/; revision=3361
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fetchmailconf b/fetchmailconf index 650e3e8b..c84a9b4e 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -94,7 +94,7 @@ class Server: self.plugout = None # Plugin command for going to listener self.netsec = None # IPV6 security options self.principal = None # Kerberos principal - self.tracepolls = FALSE # Add X-Fetchmail-Account header? + self.tracepolls = FALSE # Add trace-poll info to headers self.users = [] # List of user entries for site Server.typemap = ( ('pollname', 'String'), @@ -104,7 +104,7 @@ class Server: ('protocol', 'String'), ('port', 'Int'), ('uidl', 'Boolean'), - ('auth', 'String'), + ('auth', 'String'), ('timeout', 'Int'), ('envelope', 'String'), ('envskip', 'Int'), @@ -168,8 +168,8 @@ class Server: else: res = res + " " - if self.tracepolls: - res = res + "tracepolls\n" + if self.tracepolls: + res = res + "tracepolls\n" if self.interface: res = res + "interface " + str(self.interface) @@ -292,7 +292,7 @@ class User: if self.localnames: res = res + "is" for x in self.localnames: - res = res + " " + x + res = res + " " + `x` res = res + " here" if (self.keep != UserDefaults.keep or self.flush != UserDefaults.flush |