[code.view]

[top] / python / PyMOTW / smtplib / smtplib_verify.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2008 Doug Hellmann All rights reserved.
     #
     """
     """
     
     __version__ = "$Id$"
     #end_pymotw_header
     
     import smtplib
     
     server = smtplib.SMTP('mail')
     server.set_debuglevel(True) # show communication with the server
     try:
         dhellmann_result = server.verify('dhellmann')
         notthere_result = server.verify('notthere')
     finally:
         server.quit()
     
     print 'dhellmann:', dhellmann_result
     print 'notthere :', notthere_result
     

[top] / python / PyMOTW / smtplib / smtplib_verify.py

contact | logmethods.com