diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-11-27 04:21:53 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-11-27 04:21:53 +0000 |
commit | 32833fe55b36b1b310901a26177a779d67176f1e (patch) | |
tree | b45a05c904b9bb68ab56bea6f702d1d228236780 /fetchmailconf | |
parent | 9f1bf39868c71a87bb7d7649698ccebac7a40cdd (diff) | |
download | fetchmail-32833fe55b36b1b310901a26177a779d67176f1e.tar.gz fetchmail-32833fe55b36b1b310901a26177a779d67176f1e.tar.bz2 fetchmail-32833fe55b36b1b310901a26177a779d67176f1e.zip |
Correction.
svn path=/trunk/; revision=2990
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fetchmailconf b/fetchmailconf index 75a00fca..ba8b6e09 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -203,6 +203,7 @@ class User: self.mailboxes = [] # Remote folders to retrieve from self.smtphunt = [] # Hosts to forward to self.smtpaddress = None # Append this to MAIL FROM line + self.smtpname = None # Use this for RCPT TO self.preconnect = None # Connection setup self.postconnect = None # Connection wrapup self.mda = None # Mail Delivery Agent @@ -341,7 +342,7 @@ class User: for x in self.mailboxes: res = res + " " + x res = res + "\n" - for fld in ('smtpaddress', 'smtpname', 'preconnect', 'postconnect', 'mda', 'bsmtp', 'properties'): + for fld in ('smtpaddress', 'preconnect', 'postconnect', 'mda', 'bsmtp', 'properties'): if getattr(self, fld): res = res + " %s %s\n" % (fld, `getattr(self, fld)`) if self.lmtp != UserDefaults.lmtp: |