diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-09-23 23:11:12 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2009-09-23 23:11:12 +0000 |
commit | 5426d7874796ebe473959b8adc7f9ca6294ad0c9 (patch) | |
tree | 6ea3676a6ad276a0c9d3c40cc6bf9f7f6ef820eb /fetchmailconf.py | |
parent | 901a4665003f932d574d60b4ed1e86e71600769a (diff) | |
download | fetchmail-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
Diffstat (limited to 'fetchmailconf.py')
-rwxr-xr-x | fetchmailconf.py | 6 |
1 files changed, 3 insertions, 3 deletions
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) |