diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-03-05 12:58:32 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-03-05 12:58:32 +0000 |
commit | 8a2a861425f7835e83d5d868672ca946221fb1be (patch) | |
tree | 45d5bc74d50fae1ab0b0bc9273374e1daab56bae /fetchmailconf | |
parent | ec8aabe00589f4a8fa3b57a8ad1f3435dfdbdcf4 (diff) | |
download | fetchmail-8a2a861425f7835e83d5d868672ca946221fb1be.tar.gz fetchmail-8a2a861425f7835e83d5d868672ca946221fb1be.tar.bz2 fetchmail-8a2a861425f7835e83d5d868672ca946221fb1be.zip |
spambounce option patch.
svn path=/trunk/; revision=3203
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf index 4d7da434..7181de34 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.39" +version = "1.34" from Tkinter import * from Dialog import * @@ -53,7 +53,7 @@ class Configuration: if self.spambounce: str = str + ("set spambounce\n") else: - str = str + ("set nospambounce\n") + str = str + ("set no spambounce\n") if self.properties != ConfigurationDefaults.properties: str = str + ("set properties \"%s\"\n" % (self.properties,)); if self.poll_interval > 0: |