Created
November 19, 2011 22:15
-
-
Save anonymous/1379446 to your computer and use it in GitHub Desktop.
Test script showing usage of a buffering SMTP handler.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Copyright 2001-2002 by Vinay Sajip. All Rights Reserved. | |
# | |
# Permission to use, copy, modify, and distribute this software and its | |
# documentation for any purpose and without fee is hereby granted, | |
# provided that the above copyright notice appear in all copies and that | |
# both that copyright notice and this permission notice appear in | |
# supporting documentation, and that the name of Vinay Sajip | |
# not be used in advertising or publicity pertaining to distribution | |
# of the software without specific, written prior permission. | |
# VINAY SAJIP DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING | |
# ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL | |
# VINAY SAJIP BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR | |
# ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER | |
# IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | |
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
# | |
# This file is part of the Python logging distribution. See | |
# http://www.red-dove.com/python_logging.html | |
# | |
"""Test harness for the logging module. Tests BufferingSMTPHandler, an alternative implementation | |
of SMTPHandler. | |
Copyright (C) 2001-2002 Vinay Sajip. All Rights Reserved. | |
""" | |
import string, logging, logging.handlers | |
MAILHOST = 'beta' | |
FROM = '[email protected]' | |
TO = ['arkadi_renko'] | |
SUBJECT = 'Test Logging email from Python logging module (buffering)' | |
class BufferingSMTPHandler(logging.handlers.BufferingHandler): | |
def __init__(self, mailhost, fromaddr, toaddrs, subject, capacity): | |
logging.handlers.BufferingHandler.__init__(self, capacity) | |
self.mailhost = mailhost | |
self.mailport = None | |
self.fromaddr = fromaddr | |
self.toaddrs = toaddrs | |
self.subject = subject | |
self.setFormatter(logging.Formatter("%(asctime)s %(levelname)-5s %(message)s")) | |
def flush(self): | |
if len(self.buffer) > 0: | |
try: | |
import smtplib | |
port = self.mailport | |
if not port: | |
port = smtplib.SMTP_PORT | |
smtp = smtplib.SMTP(self.mailhost, port) | |
msg = "From: %s\r\nTo: %s\r\nSubject: %s\r\n\r\n" % (self.fromaddr, string.join(self.toaddrs, ","), self.subject) | |
for record in self.buffer: | |
s = self.format(record) | |
print s | |
msg = msg + s + "\r\n" | |
smtp.sendmail(self.fromaddr, self.toaddrs, msg) | |
smtp.quit() | |
except: | |
self.handleError(None) # no particular record | |
self.buffer = [] | |
def test(): | |
logger = logging.getLogger("") | |
logger.setLevel(logging.DEBUG) | |
logger.addHandler(BufferingSMTPHandler(MAILHOST, FROM, TO, SUBJECT, 10)) | |
for i in xrange(102): | |
logger.info("Info index = %d", i) | |
logging.shutdown() | |
if __name__ == "__main__": | |
test() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FYI: Passing
None
tohandleError
causes a second exception to be thrown fromlogging/__init__.py
, line 799. (AttributeError)At least it does in Py27.