diff options
| author | guido | 1999-01-14 04:18:46 +0000 |
|---|---|---|
| committer | guido | 1999-01-14 04:18:46 +0000 |
| commit | d3a9015d08e0edd65b498fc90d02e9ea33228d5a (patch) | |
| tree | a239ba58d1b81eb5e8f1b2741e239a5c282a66f8 /Mailman/pythonlib | |
| parent | cdd3e13c8178be25ec6ea687937093ca7e5a531a (diff) | |
| download | mailman-d3a9015d08e0edd65b498fc90d02e9ea33228d5a.tar.gz mailman-d3a9015d08e0edd65b498fc90d02e9ea33228d5a.tar.zst mailman-d3a9015d08e0edd65b498fc90d02e9ea33228d5a.zip | |
Diffstat (limited to 'Mailman/pythonlib')
| -rwxr-xr-x | Mailman/pythonlib/smtplib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/pythonlib/smtplib.py b/Mailman/pythonlib/smtplib.py index 264eafb15..ebaf7f216 100755 --- a/Mailman/pythonlib/smtplib.py +++ b/Mailman/pythonlib/smtplib.py @@ -294,8 +294,8 @@ class SMTP: """SMTP 'rcpt' command -- indicates 1 recipient for this mail.""" optionlist = '' if options and self.does_esmtp: - optionlist = string.join(options, ' ') - self.putcmd("rcpt","TO:%s %s" % (quoteaddr(recip),optionlist)) + optionlist = ' ' + string.join(options, ' ') + self.putcmd("rcpt","TO:%s%s" % (quoteaddr(recip),optionlist)) return self.getreply() def data(self,msg): |
