diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-07-25 07:18:36 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-07-25 07:18:36 +0000 |
commit | 3d0d161fa09f54838333bc8610f70110015725b0 (patch) | |
tree | f8311254fef9812232cb937cc95de40923b1fa82 /fetchmailconf | |
parent | a4814f15939f2648b39270d3f7fb53c053ed0bb6 (diff) | |
download | fetchmail-3d0d161fa09f54838333bc8610f70110015725b0.tar.gz fetchmail-3d0d161fa09f54838333bc8610f70110015725b0.tar.bz2 fetchmail-3d0d161fa09f54838333bc8610f70110015725b0.zip |
HMH's trivial fixes.
svn path=/trunk/; revision=3420
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf index 60043f05..d2c9bafd 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -219,7 +219,7 @@ class User: self.password = None # Password for mail account access self.mailboxes = [] # Remote folders to retrieve from self.smtphunt = [] # Hosts to forward to - self.fetchdomains = [] # Domains to fetch from + self.fetchdomains = [] # Domains to fetch from self.smtpaddress = None # Append this to MAIL FROM line self.smtpname = None # Use this for RCPT TO self.preconnect = None # Connection setup @@ -369,7 +369,6 @@ class User: res = res + " " + x res = res + "\n" trimmed = self.fetchdomains - print "FOO!", `trimmed` if trimmed != [] and trimmed[len(trimmed) - 1] == hostname: trimmed = trimmed[0:len(trimmed) - 1] if trimmed != []: |