Skip to content

Commit 68e8842

Browse files
authored
Merge pull request #114 from cisagov/improvement/output_more_data_from_the_smtp_exchange
Output more data from the SMTP exchange
2 parents bdd9785 + f60e336 commit 68e8842

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

trustymail/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import unicode_literals, absolute_import, print_function
22

3-
__version__ = '0.7.1'
3+
__version__ = '0.7.2'
44

55
PublicSuffixListFilename = 'public_suffix_list.dat'
66
PublicSuffixListReadOnly = False

trustymail/trustymail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def starttls_scan(domain, smtp_timeout, smtp_localhost, smtp_ports, smtp_cache):
155155
# The following line is useful when debugging why an
156156
# SMTP connection fails. It prints out all the
157157
# traffic sent to and from the SMTP server.
158-
# smtp_connection.set_debuglevel(1)
158+
smtp_connection.set_debuglevel(1)
159159
logging.debug('Testing ' + server_and_port + ' for STARTTLS support')
160160
# Try to connect. This will tell us if something is
161161
# listening.

0 commit comments

Comments
 (0)