aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-03-05 12:58:32 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-03-05 12:58:32 +0000
commit8a2a861425f7835e83d5d868672ca946221fb1be (patch)
tree45d5bc74d50fae1ab0b0bc9273374e1daab56bae /fetchmailconf
parentec8aabe00589f4a8fa3b57a8ad1f3435dfdbdcf4 (diff)
downloadfetchmail-8a2a861425f7835e83d5d868672ca946221fb1be.tar.gz
fetchmail-8a2a861425f7835e83d5d868672ca946221fb1be.tar.bz2
fetchmail-8a2a861425f7835e83d5d868672ca946221fb1be.zip
spambounce option patch.
svn path=/trunk/; revision=3203
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-xfetchmailconf4
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: