10 from email.mime.text import MIMEText
12 from invirt import database
14 def send_mail(smtp, opts, message, vm):
15 contact = database.Machine.query.filter_by(name=vm).first().contact
16 if '@' not in contact:
18 msg = MIMEText(message % vm)
20 msg['CC'] = 'XVM <xvm@mit.edu>'
21 msg['Reply-To'] = 'XVM <xvm@mit.edu>'
22 msg['From'] = opts.from_addr
23 msg['Subject'] = '[xvm] Unexpected reboot of your VM %s' % vm
24 smtp.sendmail(opts.from_addr,
25 [contact, 'xvm@mit.edu'],
29 parser = optparse.OptionParser(
30 usage = '%prog {-m message, -f from} [options] <vm-list',
31 description = __doc__.strip())
32 parser.add_option('-m', '--message',
35 help = 'filename with body of message')
36 parser.add_option('-f', '--from',
39 help = 'for From: and envelope-from; first word is %(sig)s')
40 parser.add_option('--host',
43 help = 'host that failed; %(host)s in message')
44 parser.add_option('--time',
47 help = 'time of failure; %(time)s in message')
48 opts, args = parser.parse_args()
50 if len(args) or not opts.message or not opts.from_addr:
51 parser.print_help(sys.stderr)
54 opts.sig = opts.from_addr.split()[0]
55 message = file(opts.message).read() % opts.__dict__
57 vms = sys.stdin.read().split()
64 send_mail(s, opts, message, vm)
68 if __name__ == '__main__':
69 sys.exit(main(sys.argv))