source: foomailer/foomail.py@ 406

Last change on this file since 406 was 406, checked in by Rick van der Zwet, 4 years ago

foomailer: Add SSL & auth support

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 5.0 KB
Line 
1#!/usr/bin/env python
2#
3# Rick van der Zwet <rick@vanderzwet.net>
4#
5#
6import argparse
7import mimetypes
8import os
9import random
10import re
11import smtplib
12import socket
13import string
14import sys
15import textwrap
16import time
17
18from time import gmtime,strftime
19from email.mime.multipart import MIMEMultipart
20from email.mime.base import MIMEBase
21from email.mime.text import MIMEText
22from email.utils import COMMASPACE, formatdate
23from email import encoders
24
25__svnversion__ = "$Id: foomail.py 406 2020-06-29 19:26:57Z rick $"
26__author__ = "Rick van der Zwet"
27
28
29default_subject = strftime('Test email send at %a, %d %b %Y %T %z', gmtime())
30
31parser = argparse.ArgumentParser(
32 description=textwrap.dedent('''
33 Sent test emails for mailserver verification and debugging
34
35 Author : %s
36 Version: %s
37 ''' % (__author__, __svnversion__)),
38 formatter_class=argparse.RawDescriptionHelpFormatter)
39parser.add_argument('--from', '-f', dest='sender', required=True)
40parser.add_argument('--recipient', '-r', required=True)
41parser.add_argument('--server', '-s', required=True)
42parser.add_argument('--auth', help="SMTP AUTH username:password")
43parser.add_argument('--cc', help='Carbon Copy header')
44parser.add_argument('--file', action='append', help='Attachments to sent')
45parser.add_argument('--hostname', default=socket.gethostname(), help='EHLO/HELO hostname to present')
46parser.add_argument('--message', help='Alternative message text of body')
47parser.add_argument('--subject', default=default_subject, help='Alternative Subject header')
48parser.add_argument('--spam', action='store_true', help='Include X-Spam testing headers')
49parser.add_argument('--ssl', action='store_true', help='Put SMTP connect in TLS mode')
50parser.add_argument('--port', type=int, default=25, help='SMTP port used for connection')
51parser.add_argument('--reply-to', help='Set Reply-To: header')
52parser.add_argument('--to', help='Alternative To: header')
53parser.add_argument('--silent', action='store_true', help='Do not-follow SMTP flow verbosely')
54parser.add_argument('--virus', action='store_true', help='Include eicar.txt sample virus')
55parser.add_argument('--dry-run', '-d', action='store_true', help='Do not actually sent out the message')
56args = parser.parse_args()
57
58
59email = MIMEMultipart()
60email['From'] = 'Testing sender <' + args.sender + '>'
61email['To'] = args.to or args.recipient
62if args.cc:
63 email['Cc'] = args.cc
64email['X-Server'] = args.server
65email['X-Port'] = str(args.port)
66email['X-Hostname'] = args.hostname
67email['Message-ID' ] = '<' +''.join(random.sample(string.ascii_letters +
68 string.digits,10)) + '@' + email['X-Hostname'] + '>'
69email['Date'] = strftime('%a, %d %b %Y %T %z',gmtime())
70email['Subject'] = args.subject
71email['X-Version'] = __svnversion__
72email['X-Author'] = __author__
73
74tests = []
75if args.spam:
76 tests.append('spam')
77if args.virus:
78 test.append('virus')
79email['X-Tests'] = ' '.join(tests)
80
81if args.reply_to:
82 email['Reply-To'] = args.reply_to
83
84if args.spam:
85 email['X-Spam'] = 'XJS*C4JDBQADN1.NSBN3*2IDNEN*GTUBE-STANDARD-ANTI-UBE-TEST-EMAIL*C.34X'
86
87if args.message:
88 f = open(args.message,'r')
89 msg = f.read()
90 f.close()
91else:
92 msg = textwrap.dedent('''
93 Hi,
94
95 Sorry to bother you...
96
97 Please ignore this message as it is used to test
98 and verify systems to make sure everything works
99 flawless.
100
101 %(virus)s
102
103 Technical details:\n''' % email)
104
105 for k in list(email.keys()):
106 v = email[k]
107 msg += "* %-15s : %s\n" % (k,v)
108
109 msg += textwrap.dedent('''
110 Best regards,
111 Your system administrator
112 --
113 BSD Licensed Source Code for this tool at:
114 https://rickvanderzwet.nl/svn/personal/foomailer
115 ''')
116
117
118email.attach(MIMEText(msg))
119
120if args.virus:
121 part = MIMEBase('application', "octet-stream")
122 part.set_payload('X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*')
123 encoders.encode_base64(part)
124 part.add_header('Content-Disposition', 'attachment; filename="eicar.txt"')
125 email.attach(part)
126
127if args.file:
128 for filename in args.file:
129 mimetype = mimetypes.guess_type(filename)[0].split('/')
130 part = MIMEBase(mimetype[0],mimetype[1])
131 f = open(filename,'r')
132 part.set_payload(f.read())
133 f.close()
134 encoders.encode_base64(part)
135 part.add_header('Content-Disposition', 'attachment; filename="%s"' % os.path.basename(filename))
136 email.attach(part)
137
138print(email.as_string())
139
140if not args.dry_run:
141 mark = time.time()
142 server = smtplib.SMTP(args.server, args.port, timeout=600)
143 server.set_debuglevel(not args.silent)
144 server.helo(args.hostname)
145 server.ehlo(args.hostname)
146 if args.ssl:
147 server.starttls()
148 if args.auth:
149 user, password = args.auth.split(':', 1)
150 server.login(user, password)
151 server.sendmail(args.sender, args.recipient, email.as_string())
152 server.quit()
153 print("Sending took sec: %.2f" % (time.time() - mark))
Note: See TracBrowser for help on using the repository browser.