File: pymailgui-products/unzipped/MailConfigs/mailconfig_LearningPython_ssl.py

"""
-----------------------------------------------------------------------------------------
THIS IS AN EXAMPLE ONLY -- emulate/replace for your email account's parameters.

This is the SSL extension to the non-SSL base file for this account.
See mailconfig_LearningPython.py for the non-SSL version of this account.

The POP and SMTP server ports used here do not work without SSL toggled on.
-----------------------------------------------------------------------------------------
"""

# load non-SSL overrides to PyMailGUI base file 
from mailconfig_LearningPython import *             # in this folder

# --override [base + non-SSL] settings here--

# fetch (password asked in GUI)
popservername  = 'pop.secureserver.net:995'         # for connection, SSL port#
popusername    = 'lutz@learning-python.com'         # for account login
popusesSSL     = True                               # secure with SSL?
popusesTLS     = False                              # secure with TLS/SSL?

# send (password asked in GUI if needed)
smtpservername = 'smtpout.secureserver.net:465'     # for connection: SSL port#
smtpuser       = 'lutz@learning-python.com'         # nonblank=authenticated
smtpusesSSL    = True                               # secure with SSL?
smtpusesTLS    = False                              # secure with TLS/SSL?

# this works too: broadband provider
# smtpservername = 'smtp.comcast.net:465'           # for connection: SSL port#
# smtpuser       = 'veramark62'                     # nonblank=authenticated
# smtpusesSSL    = True                             # secure with SSL?

# all other settings same as LearningPython



[Home page] Books Code Blog Python Author Train Find ©M.Lutz