summaryrefslogtreecommitdiff
path: root/bin/emailcanary
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2015-11-28 16:40:55 -0800
committerJesse Morgan <jesse@jesterpm.net>2015-11-28 16:40:55 -0800
commite88bebbf326baabb26dff0b5a69cae3b91e925bd (patch)
tree0845ba75631c2aec4a699c7d26173d859b6df3e4 /bin/emailcanary
parent02b23f394b6b06351e3a4128cec2de2f181ff12a (diff)
Switching default port to SSL port.
Diffstat (limited to 'bin/emailcanary')
-rwxr-xr-xbin/emailcanary2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/emailcanary b/bin/emailcanary
index 2c3a630..48b09c8 100755
--- a/bin/emailcanary
+++ b/bin/emailcanary
@@ -12,7 +12,7 @@ FAILURE=1
def parse_args():
parser = argparse.ArgumentParser()
parser.add_argument('-d', '--database', default='/etc/emailcanary.db', help='Specify the database to use.')
- parser.add_argument('-s', '--smtp', default='localhost:25', help='SMTP Server to send chirps to.')
+ parser.add_argument('-s', '--smtp', default='localhost:465', help='SMTP Server to send chirps to.')
parser.add_argument('-f', '--from', dest='fromaddress', help='Specify the email address to send the ping from.')
group = parser.add_mutually_exclusive_group(required=True)