aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2009-09-23 23:11:12 +0000
committerMatthias Andree <matthias.andree@gmx.de>2009-09-23 23:11:12 +0000
commit5426d7874796ebe473959b8adc7f9ca6294ad0c9 (patch)
tree6ea3676a6ad276a0c9d3c40cc6bf9f7f6ef820eb
parent901a4665003f932d574d60b4ed1e86e71600769a (diff)
downloadfetchmail-5426d7874796ebe473959b8adc7f9ca6294ad0c9.tar.gz
fetchmail-5426d7874796ebe473959b8adc7f9ca6294ad0c9.tar.bz2
fetchmail-5426d7874796ebe473959b8adc7f9ca6294ad0c9.zip
Fetchmailconf: Fix descriptions for smtpaddress and smtpname options
Smtpaddress is for RCPT TO, not MAIL FROM. Found by Gerard Seibert. 'Append to MAIL FROM line:' => 'Use domain on RCPT TO line:' 'Set RCPT To address:' => 'Set fixed RCPT TO address:' svn path=/branches/BRANCH_6-3/; revision=5433
-rw-r--r--NEWS2
-rwxr-xr-xfetchmailconf.py6
2 files changed, 5 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 3ed6160d..4feaac77 100644
--- a/NEWS
+++ b/NEWS
@@ -69,6 +69,8 @@ fetchmail 6.3.12 (released XXXX-XX-XX - not yet):
* Report multiline SMTP errors properly, reported by Earl Chew; fixes Debian Bug
#569899, reported by Akihiro Terasaki.
* Replace control characters in SMTP replies by '?'.
+* Fetchmailconf: Fix descriptions for smtpaddress and smtpname options;
+ smtpaddress is for RCPT TO, not MAIL FROM. Found by Gerard Seibert.
# TRANSLATION UPDATES AND ADDITIONS (ordered by language name):
* [ca] Catalan (Ernest Adrogué Calveras)
diff --git a/fetchmailconf.py b/fetchmailconf.py
index 5af382c7..90a2dea5 100755
--- a/fetchmailconf.py
+++ b/fetchmailconf.py
@@ -5,7 +5,7 @@
# Matthias Andree <matthias.andree@gmx.de>
# Requires Python with Tkinter, and the following OS-dependent services:
# posix, posixpath, socket
-version = "1.55 $Revision$"
+version = "1.56 $Revision$"
from Tkinter import *
from Dialog import *
@@ -1689,9 +1689,9 @@ class UserEdit(Frame, MyWidget):
Label(targwin, text="Domains to fetch from (ODMR/ETRN only)").pack(side=TOP)
ListEdit("Domains:",
self.user.fetchdomains, None, None, targwin, None)
- LabeledEntry(targwin, 'Append to MAIL FROM line:',
+ LabeledEntry(targwin, 'Use domain on RCPT TO line:',
self.smtpaddress, '26').pack(side=TOP, fill=X)
- LabeledEntry(targwin, 'Set RCPT To address:',
+ LabeledEntry(targwin, 'Set fixed RCPT TO address:',
self.smtpname, '26').pack(side=TOP, fill=X)
LabeledEntry(targwin, 'Connection setup command:',
self.preconnect, '26').pack(side=TOP, fill=X)