home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / smtplib.py < prev    next >
Encoding:
Python Source  |  2003-04-22  |  24.4 KB  |  699 lines

  1. #! /usr/bin/env python
  2.  
  3. '''SMTP/ESMTP client class.
  4.  
  5. This should follow RFC 821 (SMTP), RFC 1869 (ESMTP), RFC 2554 (SMTP
  6. Authentication) and RFC 2487 (Secure SMTP over TLS).
  7.  
  8. Notes:
  9.  
  10. Please remember, when doing ESMTP, that the names of the SMTP service
  11. extensions are NOT the same thing as the option keywords for the RCPT
  12. and MAIL commands!
  13.  
  14. Example:
  15.  
  16.   >>> import smtplib
  17.   >>> s=smtplib.SMTP("localhost")
  18.   >>> print s.help()
  19.   This is Sendmail version 8.8.4
  20.   Topics:
  21.       HELO    EHLO    MAIL    RCPT    DATA
  22.       RSET    NOOP    QUIT    HELP    VRFY
  23.       EXPN    VERB    ETRN    DSN
  24.   For more info use "HELP <topic>".
  25.   To report bugs in the implementation send email to
  26.       sendmail-bugs@sendmail.org.
  27.   For local information send email to Postmaster at your site.
  28.   End of HELP info
  29.   >>> s.putcmd("vrfy","someone@here")
  30.   >>> s.getreply()
  31.   (250, "Somebody OverHere <somebody@here.my.org>")
  32.   >>> s.quit()
  33. '''
  34.  
  35. # Author: The Dragon De Monsyne <dragondm@integral.org>
  36. # ESMTP support, test code and doc fixes added by
  37. #     Eric S. Raymond <esr@thyrsus.com>
  38. # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
  39. #     by Carey Evans <c.evans@clear.net.nz>, for picky mail servers.
  40. # RFC 2554 (authentication) support by Gerhard Haering <gerhard@bigfoot.de>.
  41. #
  42. # This was modified from the Python 1.5 library HTTP lib.
  43.  
  44. import socket
  45. import re
  46. import rfc822
  47. import types
  48. import base64
  49. import hmac
  50.  
  51. __all__ = ["SMTPException","SMTPServerDisconnected","SMTPResponseException",
  52.            "SMTPSenderRefused","SMTPRecipientsRefused","SMTPDataError",
  53.            "SMTPConnectError","SMTPHeloError","SMTPAuthenticationError",
  54.            "quoteaddr","quotedata","SMTP"]
  55.  
  56. SMTP_PORT = 25
  57. CRLF="\r\n"
  58.  
  59. # Exception classes used by this module.
  60. class SMTPException(Exception):
  61.     """Base class for all exceptions raised by this module."""
  62.  
  63. class SMTPServerDisconnected(SMTPException):
  64.     """Not connected to any SMTP server.
  65.  
  66.     This exception is raised when the server unexpectedly disconnects,
  67.     or when an attempt is made to use the SMTP instance before
  68.     connecting it to a server.
  69.     """
  70.  
  71. class SMTPResponseException(SMTPException):
  72.     """Base class for all exceptions that include an SMTP error code.
  73.  
  74.     These exceptions are generated in some instances when the SMTP
  75.     server returns an error code.  The error code is stored in the
  76.     `smtp_code' attribute of the error, and the `smtp_error' attribute
  77.     is set to the error message.
  78.     """
  79.  
  80.     def __init__(self, code, msg):
  81.         self.smtp_code = code
  82.         self.smtp_error = msg
  83.         self.args = (code, msg)
  84.  
  85. class SMTPSenderRefused(SMTPResponseException):
  86.     """Sender address refused.
  87.  
  88.     In addition to the attributes set by on all SMTPResponseException
  89.     exceptions, this sets `sender' to the string that the SMTP refused.
  90.     """
  91.  
  92.     def __init__(self, code, msg, sender):
  93.         self.smtp_code = code
  94.         self.smtp_error = msg
  95.         self.sender = sender
  96.         self.args = (code, msg, sender)
  97.  
  98. class SMTPRecipientsRefused(SMTPException):
  99.     """All recipient addresses refused.
  100.  
  101.     The errors for each recipient are accessible through the attribute
  102.     'recipients', which is a dictionary of exactly the same sort as
  103.     SMTP.sendmail() returns.
  104.     """
  105.  
  106.     def __init__(self, recipients):
  107.         self.recipients = recipients
  108.         self.args = ( recipients,)
  109.  
  110.  
  111. class SMTPDataError(SMTPResponseException):
  112.     """The SMTP server didn't accept the data."""
  113.  
  114. class SMTPConnectError(SMTPResponseException):
  115.     """Error during connection establishment."""
  116.  
  117. class SMTPHeloError(SMTPResponseException):
  118.     """The server refused our HELO reply."""
  119.  
  120. class SMTPAuthenticationError(SMTPResponseException):
  121.     """Authentication error.
  122.  
  123.     Most probably the server didn't accept the username/password
  124.     combination provided.
  125.     """
  126.  
  127. class SSLFakeSocket:
  128.     """A fake socket object that really wraps a SSLObject.
  129.  
  130.     It only supports what is needed in smtplib.
  131.     """
  132.     def __init__(self, realsock, sslobj):
  133.         self.realsock = realsock
  134.         self.sslobj = sslobj
  135.  
  136.     def send(self, str):
  137.         self.sslobj.write(str)
  138.         return len(str)
  139.  
  140.     def close(self):
  141.         self.realsock.close()
  142.  
  143. class SSLFakeFile:
  144.     """A fake file like object that really wraps a SSLObject.
  145.  
  146.     It only supports what is needed in smtplib.
  147.     """
  148.     def __init__( self, sslobj):
  149.         self.sslobj = sslobj
  150.  
  151.     def readline(self):
  152.         str = ""
  153.         chr = None
  154.         while chr != "\n":
  155.             chr = self.sslobj.read(1)
  156.             str += chr
  157.         return str
  158.  
  159.     def close(self):
  160.         pass
  161.  
  162. def quoteaddr(addr):
  163.     """Quote a subset of the email addresses defined by RFC 821.
  164.  
  165.     Should be able to handle anything rfc822.parseaddr can handle.
  166.     """
  167.     m=None
  168.     try:
  169.         m=rfc822.parseaddr(addr)[1]
  170.     except AttributeError:
  171.         pass
  172.     if not m:
  173.         #something weird here.. punt -ddm
  174.         return addr
  175.     else:
  176.         return "<%s>" % m
  177.  
  178. def quotedata(data):
  179.     """Quote data for email.
  180.  
  181.     Double leading '.', and change Unix newline '\\n', or Mac '\\r' into
  182.     Internet CRLF end-of-line.
  183.     """
  184.     return re.sub(r'(?m)^\.', '..',
  185.         re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data))
  186.  
  187.  
  188. class SMTP:
  189.     """This class manages a connection to an SMTP or ESMTP server.
  190.     SMTP Objects:
  191.         SMTP objects have the following attributes:
  192.             helo_resp
  193.                 This is the message given by the server in response to the
  194.                 most recent HELO command.
  195.  
  196.             ehlo_resp
  197.                 This is the message given by the server in response to the
  198.                 most recent EHLO command. This is usually multiline.
  199.  
  200.             does_esmtp
  201.                 This is a True value _after you do an EHLO command_, if the
  202.                 server supports ESMTP.
  203.  
  204.             esmtp_features
  205.                 This is a dictionary, which, if the server supports ESMTP,
  206.                 will _after you do an EHLO command_, contain the names of the
  207.                 SMTP service extensions this server supports, and their
  208.                 parameters (if any).
  209.  
  210.                 Note, all extension names are mapped to lower case in the
  211.                 dictionary.
  212.  
  213.         See each method's docstrings for details.  In general, there is a
  214.         method of the same name to perform each SMTP command.  There is also a
  215.         method called 'sendmail' that will do an entire mail transaction.
  216.         """
  217.     debuglevel = 0
  218.     file = None
  219.     helo_resp = None
  220.     ehlo_resp = None
  221.     does_esmtp = 0
  222.  
  223.     def __init__(self, host = '', port = 0):
  224.         """Initialize a new instance.
  225.  
  226.         If specified, `host' is the name of the remote host to which to
  227.         connect.  If specified, `port' specifies the port to which to connect.
  228.         By default, smtplib.SMTP_PORT is used.  An SMTPConnectError is raised
  229.         if the specified `host' doesn't respond correctly.
  230.  
  231.         """
  232.         self.esmtp_features = {}
  233.         if host:
  234.             (code, msg) = self.connect(host, port)
  235.             if code != 220:
  236.                 raise SMTPConnectError(code, msg)
  237.  
  238.     def set_debuglevel(self, debuglevel):
  239.         """Set the debug output level.
  240.  
  241.         A non-false value results in debug messages for connection and for all
  242.         messages sent to and received from the server.
  243.  
  244.         """
  245.         self.debuglevel = debuglevel
  246.  
  247.     def connect(self, host='localhost', port = 0):
  248.         """Connect to a host on a given port.
  249.  
  250.         If the hostname ends with a colon (`:') followed by a number, and
  251.         there is no port specified, that suffix will be stripped off and the
  252.         number interpreted as the port number to use.
  253.  
  254.         Note: This method is automatically invoked by __init__, if a host is
  255.         specified during instantiation.
  256.  
  257.         """
  258.         if not port and (host.find(':') == host.rfind(':')):
  259.             i = host.rfind(':')
  260.             if i >= 0:
  261.                 host, port = host[:i], host[i+1:]
  262.                 try: port = int(port)
  263.                 except ValueError:
  264.                     raise socket.error, "nonnumeric port"
  265.         if not port: port = SMTP_PORT
  266.         if self.debuglevel > 0: print 'connect:', (host, port)
  267.         msg = "getaddrinfo returns an empty list"
  268.         self.sock = None
  269.         for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM):
  270.             af, socktype, proto, canonname, sa = res
  271.             try:
  272.                 self.sock = socket.socket(af, socktype, proto)
  273.                 if self.debuglevel > 0: print 'connect:', (host, port)
  274.                 self.sock.connect(sa)
  275.             except socket.error, msg:
  276.                 if self.debuglevel > 0: print 'connect fail:', (host, port)
  277.                 if self.sock:
  278.                     self.sock.close()
  279.                 self.sock = None
  280.                 continue
  281.             break
  282.         if not self.sock:
  283.             raise socket.error, msg
  284.         (code, msg) = self.getreply()
  285.         if self.debuglevel > 0: print "connect:", msg
  286.         return (code, msg)
  287.  
  288.     def send(self, str):
  289.         """Send `str' to the server."""
  290.         if self.debuglevel > 0: print 'send:', `str`
  291.         if self.sock:
  292.             try:
  293.                 sendptr = 0
  294.                 while sendptr < len(str):
  295.                     sendptr = sendptr + self.sock.send(str[sendptr:])
  296.             except socket.error:
  297.                 self.close()
  298.                 raise SMTPServerDisconnected('Server not connected')
  299.         else:
  300.             raise SMTPServerDisconnected('please run connect() first')
  301.  
  302.     def putcmd(self, cmd, args=""):
  303.         """Send a command to the server."""
  304.         if args == "":
  305.             str = '%s%s' % (cmd, CRLF)
  306.         else:
  307.             str = '%s %s%s' % (cmd, args, CRLF)
  308.         self.send(str)
  309.  
  310.     def getreply(self):
  311.         """Get a reply from the server.
  312.  
  313.         Returns a tuple consisting of:
  314.  
  315.           - server response code (e.g. '250', or such, if all goes well)
  316.             Note: returns -1 if it can't read response code.
  317.  
  318.           - server response string corresponding to response code (multiline
  319.             responses are converted to a single, multiline string).
  320.  
  321.         Raises SMTPServerDisconnected if end-of-file is reached.
  322.         """
  323.         resp=[]
  324.         if self.file is None:
  325.             self.file = self.sock.makefile('rb')
  326.         while 1:
  327.             line = self.file.readline()
  328.             if line == '':
  329.                 self.close()
  330.                 raise SMTPServerDisconnected("Connection unexpectedly closed")
  331.             if self.debuglevel > 0: print 'reply:', `line`
  332.             resp.append(line[4:].strip())
  333.             code=line[:3]
  334.             # Check that the error code is syntactically correct.
  335.             # Don't attempt to read a continuation line if it is broken.
  336.             try:
  337.                 errcode = int(code)
  338.             except ValueError:
  339.                 errcode = -1
  340.                 break
  341.             # Check if multiline response.
  342.             if line[3:4]!="-":
  343.                 break
  344.  
  345.         errmsg = "\n".join(resp)
  346.         if self.debuglevel > 0:
  347.             print 'reply: retcode (%s); Msg: %s' % (errcode,errmsg)
  348.         return errcode, errmsg
  349.  
  350.     def docmd(self, cmd, args=""):
  351.         """Send a command, and return its response code."""
  352.         self.putcmd(cmd,args)
  353.         return self.getreply()
  354.  
  355.     # std smtp commands
  356.     def helo(self, name=''):
  357.         """SMTP 'helo' command.
  358.         Hostname to send for this command defaults to the FQDN of the local
  359.         host.
  360.         """
  361.         if name:
  362.             self.putcmd("helo", name)
  363.         else:
  364.             self.putcmd("helo", socket.getfqdn())
  365.         (code,msg)=self.getreply()
  366.         self.helo_resp=msg
  367.         return (code,msg)
  368.  
  369.     def ehlo(self, name=''):
  370.         """ SMTP 'ehlo' command.
  371.         Hostname to send for this command defaults to the FQDN of the local
  372.         host.
  373.         """
  374.         self.esmtp_features = {}
  375.         if name:
  376.             self.putcmd("ehlo", name)
  377.         else:
  378.             self.putcmd("ehlo", socket.getfqdn())
  379.         (code,msg)=self.getreply()
  380.         # According to RFC1869 some (badly written)
  381.         # MTA's will disconnect on an ehlo. Toss an exception if
  382.         # that happens -ddm
  383.         if code == -1 and len(msg) == 0:
  384.             self.close()
  385.             raise SMTPServerDisconnected("Server not connected")
  386.         self.ehlo_resp=msg
  387.         if code != 250:
  388.             return (code,msg)
  389.         self.does_esmtp=1
  390.         #parse the ehlo response -ddm
  391.         resp=self.ehlo_resp.split('\n')
  392.         del resp[0]
  393.         for each in resp:
  394.             m=re.match(r'(?P<feature>[A-Za-z0-9][A-Za-z0-9\-]*)',each)
  395.             if m:
  396.                 feature=m.group("feature").lower()
  397.                 params=m.string[m.end("feature"):].strip()
  398.                 self.esmtp_features[feature]=params
  399.         return (code,msg)
  400.  
  401.     def has_extn(self, opt):
  402.         """Does the server support a given SMTP service extension?"""
  403.         return self.esmtp_features.has_key(opt.lower())
  404.  
  405.     def help(self, args=''):
  406.         """SMTP 'help' command.
  407.         Returns help text from server."""
  408.         self.putcmd("help", args)
  409.         return self.getreply()
  410.  
  411.     def rset(self):
  412.         """SMTP 'rset' command -- resets session."""
  413.         return self.docmd("rset")
  414.  
  415.     def noop(self):
  416.         """SMTP 'noop' command -- doesn't do anything :>"""
  417.         return self.docmd("noop")
  418.  
  419.     def mail(self,sender,options=[]):
  420.         """SMTP 'mail' command -- begins mail xfer session."""
  421.         optionlist = ''
  422.         if options and self.does_esmtp:
  423.             optionlist = ' ' + ' '.join(options)
  424.         self.putcmd("mail", "FROM:%s%s" % (quoteaddr(sender) ,optionlist))
  425.         return self.getreply()
  426.  
  427.     def rcpt(self,recip,options=[]):
  428.         """SMTP 'rcpt' command -- indicates 1 recipient for this mail."""
  429.         optionlist = ''
  430.         if options and self.does_esmtp:
  431.             optionlist = ' ' + ' '.join(options)
  432.         self.putcmd("rcpt","TO:%s%s" % (quoteaddr(recip),optionlist))
  433.         return self.getreply()
  434.  
  435.     def data(self,msg):
  436.         """SMTP 'DATA' command -- sends message data to server.
  437.  
  438.         Automatically quotes lines beginning with a period per rfc821.
  439.         Raises SMTPDataError if there is an unexpected reply to the
  440.         DATA command; the return value from this method is the final
  441.         response code received when the all data is sent.
  442.         """
  443.         self.putcmd("data")
  444.         (code,repl)=self.getreply()
  445.         if self.debuglevel >0 : print "data:", (code,repl)
  446.         if code != 354:
  447.             raise SMTPDataError(code,repl)
  448.         else:
  449.             q = quotedata(msg)
  450.             if q[-2:] != CRLF:
  451.                 q = q + CRLF
  452.             q = q + "." + CRLF
  453.             self.send(q)
  454.             (code,msg)=self.getreply()
  455.             if self.debuglevel >0 : print "data:", (code,msg)
  456.             return (code,msg)
  457.  
  458.     def verify(self, address):
  459.         """SMTP 'verify' command -- checks for address validity."""
  460.         self.putcmd("vrfy", quoteaddr(address))
  461.         return self.getreply()
  462.     # a.k.a.
  463.     vrfy=verify
  464.  
  465.     def expn(self, address):
  466.         """SMTP 'verify' command -- checks for address validity."""
  467.         self.putcmd("expn", quoteaddr(address))
  468.         return self.getreply()
  469.  
  470.     # some useful methods
  471.  
  472.     def login(self, user, password):
  473.         """Log in on an SMTP server that requires authentication.
  474.  
  475.         The arguments are:
  476.             - user:     The user name to authenticate with.
  477.             - password: The password for the authentication.
  478.  
  479.         If there has been no previous EHLO or HELO command this session, this
  480.         method tries ESMTP EHLO first.
  481.  
  482.         This method will return normally if the authentication was successful.
  483.  
  484.         This method may raise the following exceptions:
  485.  
  486.          SMTPHeloError            The server didn't reply properly to
  487.                                   the helo greeting.
  488.          SMTPAuthenticationError  The server didn't accept the username/
  489.                                   password combination.
  490.          SMTPException            No suitable authentication method was
  491.                                   found.
  492.         """
  493.  
  494.         def encode_cram_md5(challenge, user, password):
  495.             challenge = base64.decodestring(challenge)
  496.             response = user + " " + hmac.HMAC(password, challenge).hexdigest()
  497.             return base64.encodestring(response)[:-1]
  498.  
  499.         def encode_plain(user, password):
  500.             return base64.encodestring("%s\0%s\0%s" %
  501.                                        (user, user, password))[:-1]
  502.  
  503.         AUTH_PLAIN = "PLAIN"
  504.         AUTH_CRAM_MD5 = "CRAM-MD5"
  505.  
  506.         if self.helo_resp is None and self.ehlo_resp is None:
  507.             if not (200 <= self.ehlo()[0] <= 299):
  508.                 (code, resp) = self.helo()
  509.                 if not (200 <= code <= 299):
  510.                     raise SMTPHeloError(code, resp)
  511.  
  512.         if not self.has_extn("auth"):
  513.             raise SMTPException("SMTP AUTH extension not supported by server.")
  514.  
  515.         # Authentication methods the server supports:
  516.         authlist = self.esmtp_features["auth"].split()
  517.  
  518.         # List of authentication methods we support: from preferred to
  519.         # less preferred methods. Except for the purpose of testing the weaker
  520.         # ones, we prefer stronger methods like CRAM-MD5:
  521.         preferred_auths = [AUTH_CRAM_MD5, AUTH_PLAIN]
  522.         #preferred_auths = [AUTH_PLAIN, AUTH_CRAM_MD5]
  523.  
  524.         # Determine the authentication method we'll use
  525.         authmethod = None
  526.         for method in preferred_auths:
  527.             if method in authlist:
  528.                 authmethod = method
  529.                 break
  530.         if self.debuglevel > 0: print "AuthMethod:", authmethod
  531.  
  532.         if authmethod == AUTH_CRAM_MD5:
  533.             (code, resp) = self.docmd("AUTH", AUTH_CRAM_MD5)
  534.             if code == 503:
  535.                 # 503 == 'Error: already authenticated'
  536.                 return (code, resp)
  537.             (code, resp) = self.docmd(encode_cram_md5(resp, user, password))
  538.         elif authmethod == AUTH_PLAIN:
  539.             (code, resp) = self.docmd("AUTH",
  540.                 AUTH_PLAIN + " " + encode_plain(user, password))
  541.         elif authmethod == None:
  542.             raise SMTPException("No suitable authentication method found.")
  543.         if code not in [235, 503]:
  544.             # 235 == 'Authentication successful'
  545.             # 503 == 'Error: already authenticated'
  546.             raise SMTPAuthenticationError(code, resp)
  547.         return (code, resp)
  548.  
  549.     def starttls(self, keyfile = None, certfile = None):
  550.         """Puts the connection to the SMTP server into TLS mode.
  551.  
  552.         If the server supports TLS, this will encrypt the rest of the SMTP
  553.         session. If you provide the keyfile and certfile parameters,
  554.         the identity of the SMTP server and client can be checked. This,
  555.         however, depends on whether the socket module really checks the
  556.         certificates.
  557.         """
  558.         (resp, reply) = self.docmd("STARTTLS")
  559.         if resp == 220:
  560.             sslobj = socket.ssl(self.sock, keyfile, certfile)
  561.             self.sock = SSLFakeSocket(self.sock, sslobj)
  562.             self.file = SSLFakeFile(sslobj)
  563.         return (resp, reply)
  564.  
  565.     def sendmail(self, from_addr, to_addrs, msg, mail_options=[],
  566.                  rcpt_options=[]):
  567.         """This command performs an entire mail transaction.
  568.  
  569.         The arguments are:
  570.             - from_addr    : The address sending this mail.
  571.             - to_addrs     : A list of addresses to send this mail to.  A bare
  572.                              string will be treated as a list with 1 address.
  573.             - msg          : The message to send.
  574.             - mail_options : List of ESMTP options (such as 8bitmime) for the
  575.                              mail command.
  576.             - rcpt_options : List of ESMTP options (such as DSN commands) for
  577.                              all the rcpt commands.
  578.  
  579.         If there has been no previous EHLO or HELO command this session, this
  580.         method tries ESMTP EHLO first.  If the server does ESMTP, message size
  581.         and each of the specified options will be passed to it.  If EHLO
  582.         fails, HELO will be tried and ESMTP options suppressed.
  583.  
  584.         This method will return normally if the mail is accepted for at least
  585.         one recipient.  It returns a dictionary, with one entry for each
  586.         recipient that was refused.  Each entry contains a tuple of the SMTP
  587.         error code and the accompanying error message sent by the server.
  588.  
  589.         This method may raise the following exceptions:
  590.  
  591.          SMTPHeloError          The server didn't reply properly to
  592.                                 the helo greeting.
  593.          SMTPRecipientsRefused  The server rejected ALL recipients
  594.                                 (no mail was sent).
  595.          SMTPSenderRefused      The server didn't accept the from_addr.
  596.          SMTPDataError          The server replied with an unexpected
  597.                                 error code (other than a refusal of
  598.                                 a recipient).
  599.  
  600.         Note: the connection will be open even after an exception is raised.
  601.  
  602.         Example:
  603.  
  604.          >>> import smtplib
  605.          >>> s=smtplib.SMTP("localhost")
  606.          >>> tolist=["one@one.org","two@two.org","three@three.org","four@four.org"]
  607.          >>> msg = '''
  608.          ... From: Me@my.org
  609.          ... Subject: testin'...
  610.          ...
  611.          ... This is a test '''
  612.          >>> s.sendmail("me@my.org",tolist,msg)
  613.          { "three@three.org" : ( 550 ,"User unknown" ) }
  614.          >>> s.quit()
  615.  
  616.         In the above example, the message was accepted for delivery to three
  617.         of the four addresses, and one was rejected, with the error code
  618.         550.  If all addresses are accepted, then the method will return an
  619.         empty dictionary.
  620.  
  621.         """
  622.         if self.helo_resp is None and self.ehlo_resp is None:
  623.             if not (200 <= self.ehlo()[0] <= 299):
  624.                 (code,resp) = self.helo()
  625.                 if not (200 <= code <= 299):
  626.                     raise SMTPHeloError(code, resp)
  627.         esmtp_opts = []
  628.         if self.does_esmtp:
  629.             # Hmmm? what's this? -ddm
  630.             # self.esmtp_features['7bit']=""
  631.             if self.has_extn('size'):
  632.                 esmtp_opts.append("size=" + `len(msg)`)
  633.             for option in mail_options:
  634.                 esmtp_opts.append(option)
  635.  
  636.         (code,resp) = self.mail(from_addr, esmtp_opts)
  637.         if code != 250:
  638.             self.rset()
  639.             raise SMTPSenderRefused(code, resp, from_addr)
  640.         senderrs={}
  641.         if type(to_addrs) == types.StringType:
  642.             to_addrs = [to_addrs]
  643.         for each in to_addrs:
  644.             (code,resp)=self.rcpt(each, rcpt_options)
  645.             if (code != 250) and (code != 251):
  646.                 senderrs[each]=(code,resp)
  647.         if len(senderrs)==len(to_addrs):
  648.             # the server refused all our recipients
  649.             self.rset()
  650.             raise SMTPRecipientsRefused(senderrs)
  651.         (code,resp) = self.data(msg)
  652.         if code != 250:
  653.             self.rset()
  654.             raise SMTPDataError(code, resp)
  655.         #if we got here then somebody got our mail
  656.         return senderrs
  657.  
  658.  
  659.     def close(self):
  660.         """Close the connection to the SMTP server."""
  661.         if self.file:
  662.             self.file.close()
  663.         self.file = None
  664.         if self.sock:
  665.             self.sock.close()
  666.         self.sock = None
  667.  
  668.  
  669.     def quit(self):
  670.         """Terminate the SMTP session."""
  671.         self.docmd("quit")
  672.         self.close()
  673.  
  674.  
  675. # Test the sendmail method, which tests most of the others.
  676. # Note: This always sends to localhost.
  677. if __name__ == '__main__':
  678.     import sys
  679.  
  680.     def prompt(prompt):
  681.         sys.stdout.write(prompt + ": ")
  682.         return sys.stdin.readline().strip()
  683.  
  684.     fromaddr = prompt("From")
  685.     toaddrs  = prompt("To").split(',')
  686.     print "Enter message, end with ^D:"
  687.     msg = ''
  688.     while 1:
  689.         line = sys.stdin.readline()
  690.         if not line:
  691.             break
  692.         msg = msg + line
  693.     print "Message length is " + `len(msg)`
  694.  
  695.     server = SMTP('localhost')
  696.     server.set_debuglevel(1)
  697.     server.sendmail(fromaddr, toaddrs, msg)
  698.     server.quit()
  699.