1998-06-24 23:15:50 -03:00
|
|
|
#!/usr/bin/python
|
|
|
|
"""SMTP/ESMTP client class.
|
1998-01-29 13:24:40 -04:00
|
|
|
|
|
|
|
Author: The Dragon De Monsyne <dragondm@integral.org>
|
1998-06-24 23:15:50 -03:00
|
|
|
ESMTP support, test code and doc fixes added by
|
1998-08-04 12:29:54 -03:00
|
|
|
Eric S. Raymond <esr@thyrsus.com>
|
1998-07-13 12:18:49 -03:00
|
|
|
Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
|
1998-08-04 12:29:54 -03:00
|
|
|
by Carey Evans <c.evans@clear.net.nz>, for picky mail servers.
|
|
|
|
|
1998-01-29 13:24:40 -04:00
|
|
|
(This was modified from the Python 1.5 library HTTP lib.)
|
|
|
|
|
1998-06-24 23:15:50 -03:00
|
|
|
This should follow RFC 821 (SMTP) and RFC 1869 (ESMTP).
|
1998-01-29 13:24:40 -04:00
|
|
|
|
1998-08-04 12:29:54 -03:00
|
|
|
Notes:
|
|
|
|
|
|
|
|
Please remember, when doing ESMTP, that the names of the SMTP service
|
|
|
|
extensions are NOT the same thing as the option keyords for the RCPT
|
|
|
|
and MAIL commands!
|
|
|
|
|
1998-01-29 13:24:40 -04:00
|
|
|
Example:
|
|
|
|
|
|
|
|
>>> import smtplib
|
|
|
|
>>> s=smtplib.SMTP("localhost")
|
|
|
|
>>> print s.help()
|
|
|
|
This is Sendmail version 8.8.4
|
|
|
|
Topics:
|
|
|
|
HELO EHLO MAIL RCPT DATA
|
|
|
|
RSET NOOP QUIT HELP VRFY
|
|
|
|
EXPN VERB ETRN DSN
|
|
|
|
For more info use "HELP <topic>".
|
|
|
|
To report bugs in the implementation send email to
|
|
|
|
sendmail-bugs@sendmail.org.
|
|
|
|
For local information send email to Postmaster at your site.
|
|
|
|
End of HELP info
|
|
|
|
>>> s.putcmd("vrfy","someone@here")
|
|
|
|
>>> s.getreply()
|
|
|
|
(250, "Somebody OverHere <somebody@here.my.org>")
|
|
|
|
>>> s.quit()
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
import socket
|
1998-08-04 12:29:54 -03:00
|
|
|
import string, re
|
|
|
|
import rfc822
|
1998-08-13 16:57:46 -03:00
|
|
|
import types
|
1998-01-29 13:24:40 -04:00
|
|
|
|
|
|
|
SMTP_PORT = 25
|
|
|
|
CRLF="\r\n"
|
|
|
|
|
|
|
|
# used for exceptions
|
1998-01-29 13:26:45 -04:00
|
|
|
SMTPServerDisconnected="Server not connected"
|
1998-01-29 13:24:40 -04:00
|
|
|
SMTPSenderRefused="Sender address refused"
|
|
|
|
SMTPRecipientsRefused="All Recipients refused"
|
1998-06-24 23:15:50 -03:00
|
|
|
SMTPDataError="Error transmitting message data"
|
1998-01-29 13:24:40 -04:00
|
|
|
|
1998-07-13 12:18:49 -03:00
|
|
|
def quoteaddr(addr):
|
|
|
|
"""Quote a subset of the email addresses defined by RFC 821.
|
|
|
|
|
1998-08-04 12:29:54 -03:00
|
|
|
Should be able to handle anything rfc822.parseaddr can handle."""
|
1998-07-13 12:18:49 -03:00
|
|
|
|
1998-08-04 12:29:54 -03:00
|
|
|
m=None
|
1998-07-13 12:18:49 -03:00
|
|
|
try:
|
1998-08-04 12:29:54 -03:00
|
|
|
m=rfc822.parseaddr(addr)[1]
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
if not m:
|
|
|
|
#something weird here.. punt -ddm
|
|
|
|
return addr
|
|
|
|
else:
|
|
|
|
return "<%s>" % m
|
1998-07-13 12:18:49 -03:00
|
|
|
|
|
|
|
def quotedata(data):
|
|
|
|
"""Quote data for email.
|
|
|
|
|
1998-08-04 12:29:54 -03:00
|
|
|
Double leading '.', and change Unix newline '\n', or Mac '\r' into
|
1998-07-13 12:18:49 -03:00
|
|
|
Internet CRLF end-of-line."""
|
|
|
|
return re.sub(r'(?m)^\.', '..',
|
1998-08-04 12:29:54 -03:00
|
|
|
re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data))
|
1998-07-13 12:18:49 -03:00
|
|
|
|
1998-01-29 13:24:40 -04:00
|
|
|
class SMTP:
|
1998-08-04 12:29:54 -03:00
|
|
|
"""This class manages a connection to an SMTP or ESMTP server.
|
|
|
|
SMTP Objects:
|
|
|
|
SMTP objects have the following attributes:
|
|
|
|
helo_resp
|
|
|
|
This is the message given by the server in responce to the
|
|
|
|
most recent HELO command.
|
|
|
|
|
|
|
|
ehlo_resp
|
|
|
|
This is the message given by the server in responce to the
|
|
|
|
most recent EHLO command. This is usually multiline.
|
|
|
|
|
|
|
|
does_esmtp
|
|
|
|
This is a True value _after you do an EHLO command_, if the
|
|
|
|
server supports ESMTP.
|
|
|
|
|
|
|
|
esmtp_features
|
|
|
|
This is a dictionary, which, if the server supports ESMTP,
|
|
|
|
will _after you do an EHLO command_, contain the names of the
|
|
|
|
SMTP service extentions this server supports, and their
|
|
|
|
parameters (if any).
|
|
|
|
Note, all extention names are mapped to lower case in the
|
|
|
|
dictionary.
|
|
|
|
|
|
|
|
For method docs, see each method's docstrings. In general, there is
|
|
|
|
a method of the same name to preform each SMTP comand, and there
|
|
|
|
is a method called 'sendmail' that will do an entiere mail
|
|
|
|
transaction."""
|
|
|
|
|
1998-06-24 23:15:50 -03:00
|
|
|
debuglevel = 0
|
|
|
|
file = None
|
|
|
|
helo_resp = None
|
|
|
|
ehlo_resp = None
|
1998-08-04 12:29:54 -03:00
|
|
|
does_esmtp = 0
|
1998-06-24 23:15:50 -03:00
|
|
|
|
1998-01-29 13:24:40 -04:00
|
|
|
def __init__(self, host = '', port = 0):
|
|
|
|
"""Initialize a new instance.
|
|
|
|
|
|
|
|
If specified, `host' is the name of the remote host to which
|
|
|
|
to connect. If specified, `port' specifies the port to which
|
|
|
|
to connect. By default, smtplib.SMTP_PORT is used.
|
|
|
|
|
|
|
|
"""
|
1998-08-04 12:29:54 -03:00
|
|
|
self.esmtp_features = {}
|
1998-01-29 13:24:40 -04:00
|
|
|
if host: self.connect(host, port)
|
|
|
|
|
|
|
|
def set_debuglevel(self, debuglevel):
|
|
|
|
"""Set the debug output level.
|
|
|
|
|
|
|
|
A non-false value results in debug messages for connection and
|
|
|
|
for all messages sent to and received from the server.
|
|
|
|
|
|
|
|
"""
|
|
|
|
self.debuglevel = debuglevel
|
|
|
|
|
|
|
|
def connect(self, host='localhost', port = 0):
|
|
|
|
"""Connect to a host on a given port.
|
1998-06-24 23:15:50 -03:00
|
|
|
|
|
|
|
If the hostname ends with a colon (`:') followed by a number,
|
1998-08-10 17:07:00 -03:00
|
|
|
and there is no port specified, that suffix will be stripped
|
1998-08-04 12:29:54 -03:00
|
|
|
off and the number interpreted as the port number to use.
|
1998-06-24 23:15:50 -03:00
|
|
|
|
1998-01-29 13:24:40 -04:00
|
|
|
Note: This method is automatically invoked by __init__,
|
|
|
|
if a host is specified during instantiation.
|
|
|
|
|
|
|
|
"""
|
|
|
|
if not port:
|
|
|
|
i = string.find(host, ':')
|
|
|
|
if i >= 0:
|
|
|
|
host, port = host[:i], host[i+1:]
|
|
|
|
try: port = string.atoi(port)
|
|
|
|
except string.atoi_error:
|
|
|
|
raise socket.error, "nonnumeric port"
|
|
|
|
if not port: port = SMTP_PORT
|
|
|
|
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
if self.debuglevel > 0: print 'connect:', (host, port)
|
|
|
|
self.sock.connect(host, port)
|
1998-03-26 17:13:24 -04:00
|
|
|
(code,msg)=self.getreply()
|
|
|
|
if self.debuglevel >0 : print "connect:", msg
|
|
|
|
return msg
|
1998-01-29 13:24:40 -04:00
|
|
|
|
|
|
|
def send(self, str):
|
|
|
|
"""Send `str' to the server."""
|
|
|
|
if self.debuglevel > 0: print 'send:', `str`
|
1998-03-26 17:13:24 -04:00
|
|
|
if self.sock:
|
1998-08-10 17:07:00 -03:00
|
|
|
try:
|
1998-08-04 12:29:54 -03:00
|
|
|
self.sock.send(str)
|
1998-08-10 17:07:00 -03:00
|
|
|
except socket.error:
|
1998-08-04 12:29:54 -03:00
|
|
|
raise SMTPServerDisconnected
|
1998-01-29 13:26:45 -04:00
|
|
|
else:
|
1998-03-26 17:13:24 -04:00
|
|
|
raise SMTPServerDisconnected
|
1998-01-29 13:26:45 -04:00
|
|
|
|
1998-01-29 13:24:40 -04:00
|
|
|
def putcmd(self, cmd, args=""):
|
|
|
|
"""Send a command to the server.
|
|
|
|
"""
|
|
|
|
str = '%s %s%s' % (cmd, args, CRLF)
|
|
|
|
self.send(str)
|
|
|
|
|
1998-08-04 12:29:54 -03:00
|
|
|
def getreply(self):
|
1998-01-29 13:24:40 -04:00
|
|
|
"""Get a reply from the server.
|
|
|
|
|
|
|
|
Returns a tuple consisting of:
|
|
|
|
- server response code (e.g. '250', or such, if all goes well)
|
1998-06-24 23:15:50 -03:00
|
|
|
Note: returns -1 if it can't read response code.
|
1998-01-29 13:24:40 -04:00
|
|
|
- server response string corresponding to response code
|
1998-06-24 23:15:50 -03:00
|
|
|
(note : multiline responses converted to a single,
|
1998-01-29 13:26:45 -04:00
|
|
|
multiline string)
|
1998-01-29 13:24:40 -04:00
|
|
|
"""
|
|
|
|
resp=[]
|
1998-03-26 17:13:24 -04:00
|
|
|
self.file = self.sock.makefile('rb')
|
|
|
|
while 1:
|
1998-01-29 13:24:40 -04:00
|
|
|
line = self.file.readline()
|
|
|
|
if self.debuglevel > 0: print 'reply:', `line`
|
1998-03-26 17:13:24 -04:00
|
|
|
resp.append(string.strip(line[4:]))
|
|
|
|
code=line[:3]
|
|
|
|
#check if multiline resp
|
|
|
|
if line[3:4]!="-":
|
1998-01-29 13:24:40 -04:00
|
|
|
break
|
|
|
|
try:
|
|
|
|
errcode = string.atoi(code)
|
|
|
|
except(ValueError):
|
1998-03-26 17:13:24 -04:00
|
|
|
errcode = -1
|
1998-01-29 13:24:40 -04:00
|
|
|
|
1998-03-26 17:13:24 -04:00
|
|
|
errmsg = string.join(resp,"\n")
|
|
|
|
if self.debuglevel > 0:
|
1998-01-29 13:26:45 -04:00
|
|
|
print 'reply: retcode (%s); Msg: %s' % (errcode,errmsg)
|
1998-01-29 13:24:40 -04:00
|
|
|
return errcode, errmsg
|
|
|
|
|
|
|
|
def docmd(self, cmd, args=""):
|
1998-06-24 23:15:50 -03:00
|
|
|
""" Send a command, and return its response code """
|
1998-03-26 17:13:24 -04:00
|
|
|
|
|
|
|
self.putcmd(cmd,args)
|
|
|
|
(code,msg)=self.getreply()
|
|
|
|
return code
|
1998-01-29 13:24:40 -04:00
|
|
|
# std smtp commands
|
|
|
|
|
|
|
|
def helo(self, name=''):
|
|
|
|
""" SMTP 'helo' command. Hostname to send for this command
|
|
|
|
defaults to the FQDN of the local host """
|
1998-03-26 17:13:24 -04:00
|
|
|
name=string.strip(name)
|
|
|
|
if len(name)==0:
|
|
|
|
name=socket.gethostbyaddr(socket.gethostname())[0]
|
|
|
|
self.putcmd("helo",name)
|
|
|
|
(code,msg)=self.getreply()
|
|
|
|
self.helo_resp=msg
|
|
|
|
return code
|
1998-01-29 13:24:40 -04:00
|
|
|
|
1998-06-24 23:15:50 -03:00
|
|
|
def ehlo(self, name=''):
|
|
|
|
""" SMTP 'ehlo' command. Hostname to send for this command
|
1998-08-04 12:29:54 -03:00
|
|
|
defaults to the FQDN of the local host. """
|
1998-06-24 23:15:50 -03:00
|
|
|
name=string.strip(name)
|
|
|
|
if len(name)==0:
|
|
|
|
name=socket.gethostbyaddr(socket.gethostname())[0]
|
|
|
|
self.putcmd("ehlo",name)
|
1998-08-04 12:29:54 -03:00
|
|
|
(code,msg)=self.getreply()
|
|
|
|
# According to RFC1869 some (badly written)
|
|
|
|
# MTA's will disconnect on an ehlo. Toss an exception if
|
|
|
|
# that happens -ddm
|
|
|
|
if code == -1 and len(msg) == 0:
|
|
|
|
raise SMTPServerDisconnected
|
1998-06-24 23:15:50 -03:00
|
|
|
self.ehlo_resp=msg
|
1998-08-04 12:29:54 -03:00
|
|
|
if code<>250:
|
|
|
|
return code
|
|
|
|
self.does_esmtp=1
|
|
|
|
#parse the ehlo responce -ddm
|
1998-08-10 17:07:00 -03:00
|
|
|
resp=string.split(self.ehlo_resp,'\n')
|
1998-08-04 12:29:54 -03:00
|
|
|
del resp[0]
|
1998-08-10 17:07:00 -03:00
|
|
|
for each in resp:
|
1998-08-04 12:29:54 -03:00
|
|
|
m=re.match(r'(?P<feature>[A-Za-z0-9][A-Za-z0-9\-]*)',each)
|
|
|
|
if m:
|
|
|
|
feature=string.lower(m.group("feature"))
|
|
|
|
params=string.strip(m.string[m.end("feature"):])
|
|
|
|
self.esmtp_features[feature]=params
|
1998-06-24 23:15:50 -03:00
|
|
|
return code
|
|
|
|
|
1998-08-04 12:29:54 -03:00
|
|
|
def has_extn(self, opt):
|
|
|
|
"""Does the server support a given SMTP service extension?"""
|
|
|
|
return self.esmtp_features.has_key(string.lower(opt))
|
1998-06-24 23:15:50 -03:00
|
|
|
|
1998-04-03 13:03:13 -04:00
|
|
|
def help(self, args=''):
|
1998-03-26 17:13:24 -04:00
|
|
|
""" SMTP 'help' command. Returns help text from server """
|
1998-04-03 13:03:13 -04:00
|
|
|
self.putcmd("help", args)
|
1998-03-26 17:13:24 -04:00
|
|
|
(code,msg)=self.getreply()
|
|
|
|
return msg
|
1998-01-29 13:24:40 -04:00
|
|
|
|
|
|
|
def rset(self):
|
|
|
|
""" SMTP 'rset' command. Resets session. """
|
1998-03-26 17:13:24 -04:00
|
|
|
code=self.docmd("rset")
|
|
|
|
return code
|
1998-01-29 13:24:40 -04:00
|
|
|
|
|
|
|
def noop(self):
|
1998-06-24 23:15:50 -03:00
|
|
|
""" SMTP 'noop' command. Doesn't do anything :> """
|
1998-03-26 17:13:24 -04:00
|
|
|
code=self.docmd("noop")
|
|
|
|
return code
|
1998-01-29 13:24:40 -04:00
|
|
|
|
1998-06-24 23:15:50 -03:00
|
|
|
def mail(self,sender,options=[]):
|
1998-01-29 13:24:40 -04:00
|
|
|
""" SMTP 'mail' command. Begins mail xfer session. """
|
1998-08-04 12:29:54 -03:00
|
|
|
optionlist = ''
|
|
|
|
if options and self.does_esmtp:
|
|
|
|
optionlist = string.join(options, ' ')
|
|
|
|
self.putcmd("mail", "FROM:%s %s" % (quoteaddr(sender) ,optionlist))
|
1998-03-26 17:13:24 -04:00
|
|
|
return self.getreply()
|
1998-01-29 13:24:40 -04:00
|
|
|
|
1998-08-04 12:29:54 -03:00
|
|
|
def rcpt(self,recip,options=[]):
|
1998-01-29 13:24:40 -04:00
|
|
|
""" SMTP 'rcpt' command. Indicates 1 recipient for this mail. """
|
1998-08-04 12:29:54 -03:00
|
|
|
optionlist = ''
|
|
|
|
if options and self.does_esmtp:
|
|
|
|
optionlist = string.join(options, ' ')
|
|
|
|
self.putcmd("rcpt","TO:%s %s" % (quoteaddr(recip),optionlist))
|
1998-03-26 17:13:24 -04:00
|
|
|
return self.getreply()
|
1998-01-29 13:24:40 -04:00
|
|
|
|
|
|
|
def data(self,msg):
|
|
|
|
""" SMTP 'DATA' command. Sends message data to server.
|
1998-06-24 23:15:50 -03:00
|
|
|
Automatically quotes lines beginning with a period per rfc821. """
|
1998-03-26 17:13:24 -04:00
|
|
|
self.putcmd("data")
|
|
|
|
(code,repl)=self.getreply()
|
|
|
|
if self.debuglevel >0 : print "data:", (code,repl)
|
|
|
|
if code <> 354:
|
|
|
|
return -1
|
|
|
|
else:
|
1998-07-13 12:18:49 -03:00
|
|
|
self.send(quotedata(msg))
|
|
|
|
self.send("%s.%s" % (CRLF, CRLF))
|
1998-03-26 17:13:24 -04:00
|
|
|
(code,msg)=self.getreply()
|
|
|
|
if self.debuglevel >0 : print "data:", (code,msg)
|
1998-01-29 13:24:40 -04:00
|
|
|
return code
|
|
|
|
|
1998-08-04 12:29:54 -03:00
|
|
|
def vrfy(self, address):
|
|
|
|
return self.verify(address)
|
|
|
|
|
|
|
|
def verify(self, address):
|
|
|
|
""" SMTP 'verify' command. Checks for address validity. """
|
|
|
|
self.putcmd("vrfy", quoteaddr(address))
|
|
|
|
return self.getreply()
|
|
|
|
|
|
|
|
def expn(self, address):
|
|
|
|
""" SMTP 'verify' command. Checks for address validity. """
|
|
|
|
self.putcmd("expn", quoteaddr(address))
|
|
|
|
return self.getreply()
|
|
|
|
|
|
|
|
|
1998-06-24 23:15:50 -03:00
|
|
|
#some useful methods
|
1998-08-13 16:57:46 -03:00
|
|
|
def sendmail(self, from_addr, to_addrs, msg, mail_options=[],
|
|
|
|
rcpt_options=[]):
|
1998-01-29 13:24:40 -04:00
|
|
|
""" This command performs an entire mail transaction.
|
1998-03-26 17:13:24 -04:00
|
|
|
The arguments are:
|
1998-01-29 13:24:40 -04:00
|
|
|
- from_addr : The address sending this mail.
|
|
|
|
- to_addrs : a list of addresses to send this mail to
|
1998-08-13 16:57:46 -03:00
|
|
|
(a string will be treated as a list with 1 address)
|
1998-01-29 13:24:40 -04:00
|
|
|
- msg : the message to send.
|
1998-08-04 12:29:54 -03:00
|
|
|
- mail_options : list of ESMTP options (such as 8bitmime)
|
|
|
|
for the mail command
|
|
|
|
- rcpt_options : List of ESMTP options (such as DSN commands)
|
|
|
|
for all the rcpt commands
|
1998-08-10 17:07:00 -03:00
|
|
|
If there has been no previous EHLO or HELO command this session,
|
|
|
|
this method tries ESMTP EHLO first. If the server does ESMTP, message
|
1998-08-04 12:29:54 -03:00
|
|
|
size and each of the specified options will be passed to it.
|
|
|
|
If EHLO fails, HELO will be tried and ESMTP options suppressed.
|
1998-01-29 13:24:40 -04:00
|
|
|
|
1998-06-24 23:15:50 -03:00
|
|
|
This method will return normally if the mail is accepted for at least
|
|
|
|
one recipient. Otherwise it will throw an exception (either
|
|
|
|
SMTPSenderRefused, SMTPRecipientsRefused, or SMTPDataError)
|
1998-03-26 17:13:24 -04:00
|
|
|
That is, if this method does not throw an exception, then someone
|
1998-06-24 23:15:50 -03:00
|
|
|
should get your mail. If this method does not throw an exception,
|
|
|
|
it returns a dictionary, with one entry for each recipient that was
|
1998-01-29 13:26:45 -04:00
|
|
|
refused.
|
1998-01-29 13:24:40 -04:00
|
|
|
|
1998-06-24 23:15:50 -03:00
|
|
|
Example:
|
1998-01-29 13:24:40 -04:00
|
|
|
|
|
|
|
>>> import smtplib
|
|
|
|
>>> s=smtplib.SMTP("localhost")
|
1998-01-29 13:26:45 -04:00
|
|
|
>>> tolist=["one@one.org","two@two.org","three@three.org","four@four.org"]
|
1998-01-29 13:24:40 -04:00
|
|
|
>>> msg = '''
|
|
|
|
... From: Me@my.org
|
|
|
|
... Subject: testin'...
|
|
|
|
...
|
|
|
|
... This is a test '''
|
|
|
|
>>> s.sendmail("me@my.org",tolist,msg)
|
|
|
|
{ "three@three.org" : ( 550 ,"User unknown" ) }
|
|
|
|
>>> s.quit()
|
|
|
|
|
1998-01-29 13:26:45 -04:00
|
|
|
In the above example, the message was accepted for delivery to
|
|
|
|
three of the four addresses, and one was rejected, with the error
|
|
|
|
code 550. If all addresses are accepted, then the method
|
|
|
|
will return an empty dictionary.
|
1998-01-29 13:24:40 -04:00
|
|
|
"""
|
1998-06-24 23:15:50 -03:00
|
|
|
if not self.helo_resp and not self.ehlo_resp:
|
|
|
|
if self.ehlo() >= 400:
|
|
|
|
self.helo()
|
|
|
|
esmtp_opts = []
|
1998-08-04 12:29:54 -03:00
|
|
|
if self.does_esmtp:
|
|
|
|
# Hmmm? what's this? -ddm
|
|
|
|
# self.esmtp_features['7bit']=""
|
|
|
|
if self.has_extn('size'):
|
|
|
|
esmtp_opts.append("size=" + `len(msg)`)
|
|
|
|
for option in mail_options:
|
1998-06-24 23:15:50 -03:00
|
|
|
esmtp_opts.append(option)
|
1998-08-04 12:29:54 -03:00
|
|
|
|
1998-06-24 23:15:50 -03:00
|
|
|
(code,resp) = self.mail(from_addr, esmtp_opts)
|
|
|
|
if code <> 250:
|
1998-03-26 17:13:24 -04:00
|
|
|
self.rset()
|
|
|
|
raise SMTPSenderRefused
|
|
|
|
senderrs={}
|
1998-08-13 16:57:46 -03:00
|
|
|
if type(to_addrs) == types.StringType:
|
|
|
|
to_addrs = [to_addrs]
|
1998-01-29 13:24:40 -04:00
|
|
|
for each in to_addrs:
|
1998-08-04 12:29:54 -03:00
|
|
|
(code,resp)=self.rcpt(each, rcpt_options)
|
1998-03-26 17:13:24 -04:00
|
|
|
if (code <> 250) and (code <> 251):
|
1998-01-29 13:26:45 -04:00
|
|
|
senderrs[each]=(code,resp)
|
1998-01-29 13:24:40 -04:00
|
|
|
if len(senderrs)==len(to_addrs):
|
1998-06-24 23:15:50 -03:00
|
|
|
# the server refused all our recipients
|
1998-01-29 13:24:40 -04:00
|
|
|
self.rset()
|
|
|
|
raise SMTPRecipientsRefused
|
|
|
|
code=self.data(msg)
|
1998-03-26 17:13:24 -04:00
|
|
|
if code <>250 :
|
1998-01-29 13:24:40 -04:00
|
|
|
self.rset()
|
1998-03-26 17:13:24 -04:00
|
|
|
raise SMTPDataError
|
1998-01-29 13:24:40 -04:00
|
|
|
#if we got here then somebody got our mail
|
1998-03-26 17:13:24 -04:00
|
|
|
return senderrs
|
1998-01-29 13:24:40 -04:00
|
|
|
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
"""Close the connection to the SMTP server."""
|
|
|
|
if self.file:
|
|
|
|
self.file.close()
|
|
|
|
self.file = None
|
|
|
|
if self.sock:
|
|
|
|
self.sock.close()
|
|
|
|
self.sock = None
|
|
|
|
|
|
|
|
|
|
|
|
def quit(self):
|
1998-06-24 23:15:50 -03:00
|
|
|
"""Terminate the SMTP session."""
|
1998-03-26 17:13:24 -04:00
|
|
|
self.docmd("quit")
|
|
|
|
self.close()
|
1998-06-24 23:15:50 -03:00
|
|
|
|
|
|
|
# Test the sendmail method, which tests most of the others.
|
|
|
|
# Note: This always sends to localhost.
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys, rfc822
|
|
|
|
|
|
|
|
def prompt(prompt):
|
|
|
|
sys.stdout.write(prompt + ": ")
|
|
|
|
return string.strip(sys.stdin.readline())
|
|
|
|
|
|
|
|
fromaddr = prompt("From")
|
|
|
|
toaddrs = string.splitfields(prompt("To"), ',')
|
|
|
|
print "Enter message, end with ^D:"
|
|
|
|
msg = ''
|
|
|
|
while 1:
|
|
|
|
line = sys.stdin.readline()
|
|
|
|
if not line:
|
|
|
|
break
|
|
|
|
msg = msg + line
|
|
|
|
print "Message length is " + `len(msg)`
|
|
|
|
|
|
|
|
server = SMTP('localhost')
|
|
|
|
server.set_debuglevel(1)
|
|
|
|
server.sendmail(fromaddr, toaddrs, msg)
|
|
|
|
server.quit()
|