diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-07-23 13:04:52 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-07-23 13:04:52 +0000 |
commit | 4d5ea12cb31631543e3c53730e497fb63baa25ca (patch) | |
tree | 936711657725613fe41e550be1b22a8655193bb0 /fetchmailconf | |
parent | 0e42ae08ebae241ccb87a4a1e4d3a3652c6b8495 (diff) | |
download | fetchmail-4d5ea12cb31631543e3c53730e497fb63baa25ca.tar.gz fetchmail-4d5ea12cb31631543e3c53730e497fb63baa25ca.tar.bz2 fetchmail-4d5ea12cb31631543e3c53730e497fb63baa25ca.zip |
sslcert fix.
svn path=/trunk/; revision=2930
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf index 16fc806c..11a7a559 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -4,7 +4,7 @@ # by Eric S. Raymond, <esr@snark.thyrsus.com>. # Requires Python with Tkinter, and the following OS-dependent services: # posix, posixpath, socket -version = "1.26" +version = "1.27" from Tkinter import * from Dialog import * @@ -312,7 +312,7 @@ class User: if self.sslkey and self.sslkey != UserDefaults.sslkey: res = res + " sslkey " + `self.sslkey` if self.sslcert and self.sslcert != UserDefaults.sslcert: - res = res + " ssl " + `self.sslcert` + res = res + " sslcert " + `self.sslcert` if self.expunge != UserDefaults.expunge: res = res + " expunge " + `self.expunge` res = res + "\n" |