mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
116 lines
3.9 KiB
Python
116 lines
3.9 KiB
Python
#
|
|
# RTEMS Tools Project (http://www.rtems.org/)
|
|
# Copyright 2013 Chris Johns (chrisj@rtems.org)
|
|
# All rights reserved.
|
|
#
|
|
# This file is part of the RTEMS Tools package in 'rtems-tools'.
|
|
#
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
# ANY SPECIAL, DIRECT, 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.
|
|
|
|
#
|
|
# Manage emailing results or reports.
|
|
#
|
|
|
|
from __future__ import print_function
|
|
|
|
import os
|
|
import smtplib
|
|
import socket
|
|
|
|
import error
|
|
import options
|
|
import path
|
|
|
|
def append_options(opts):
|
|
opts['--mail'] = 'Send email report or results.'
|
|
opts['--smtp-host'] = 'SMTP host to send via.'
|
|
opts['--mail-to'] = 'Email address to send the email too.'
|
|
opts['--mail-from'] = 'Email address the report is from.'
|
|
|
|
class mail:
|
|
def __init__(self, opts):
|
|
self.opts = opts
|
|
|
|
def from_address(self):
|
|
|
|
def _clean(l):
|
|
if '#' in l:
|
|
l = l[:l.index('#')]
|
|
if '\r' in l:
|
|
l = l[:l.index('r')]
|
|
if '\n' in l:
|
|
l = l[:l.index('\n')]
|
|
return l.strip()
|
|
|
|
addr = self.opts.get_arg('--mail-from')
|
|
if addr is not None:
|
|
return addr[1]
|
|
mailrc = None
|
|
if 'MAILRC' in os.environ:
|
|
mailrc = os.environ['MAILRC']
|
|
if mailrc is None and 'HOME' in os.environ:
|
|
mailrc = path.join(os.environ['HOME'], '.mailrc')
|
|
if mailrc is not None and path.exists(mailrc):
|
|
# set from="Joe Blow <joe@blow.org>"
|
|
try:
|
|
mrc = open(mailrc, 'r')
|
|
lines = mrc.readlines()
|
|
mrc.close()
|
|
except IOError as err:
|
|
raise error.general('error reading: %s' % (mailrc))
|
|
for l in lines:
|
|
l = _clean(l)
|
|
if 'from' in l:
|
|
fa = l[l.index('from') + len('from'):]
|
|
if '=' in fa:
|
|
addr = fa[fa.index('=') + 1:].replace('"', ' ').strip()
|
|
if addr is not None:
|
|
return addr
|
|
addr = self.opts.defaults.get_value('%{_sbgit_mail}')
|
|
return addr
|
|
|
|
def smtp_host(self):
|
|
host = self.opts.get_arg('--smtp-host')
|
|
if host is not None:
|
|
return host[1]
|
|
host = self.opts.defaults.get_value('%{_mail_smtp_host}')
|
|
if host is not None:
|
|
return host
|
|
return 'localhost'
|
|
|
|
def send(self, to_addr, subject, body):
|
|
from_addr = self.from_address()
|
|
msg = "From: %s\r\nTo: %s\r\nSubject: %s\r\n\r\n" % \
|
|
(from_addr, to_addr, subject) + body
|
|
if type(to_addr) is str:
|
|
to_addr = to_addr.split(',')
|
|
if type(to_addr) is not list:
|
|
raise error.general('invalid to_addr type')
|
|
try:
|
|
s = smtplib.SMTP(self.smtp_host())
|
|
s.sendmail(from_addr, to_addr, msg)
|
|
except smtplib.SMTPException as se:
|
|
raise error.general('sending mail: %s' % (str(se)))
|
|
except socket.error as se:
|
|
raise error.general('sending mail: %s' % (str(se)))
|
|
|
|
if __name__ == '__main__':
|
|
import sys
|
|
optargs = {}
|
|
append_options(optargs)
|
|
opts = options.load(sys.argv, optargs = optargs, defaults = 'defaults.mc')
|
|
m = mail(opts)
|
|
print('From: %s' % (m.from_address()))
|
|
print('SMTP Host: %s' % (m.smtp_host()))
|
|
m.send(m.from_address(), 'Test mailer.py', 'This is a test')
|