File: pymailgui-products/unzipped/MailConfigs/mailconfig_RmiDotNet_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_RmiDotNet.py for the non-SSL version of this account.

The SMTP server port here does not work without SSL toggled on (it times out).
------------------------------------------------------------------------------------
"""

# load non-SSL overrides to PyMailGUI base file
from mailconfig_RmiDotNet import *             # in this folder, or exec(open())

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

# fetch (password asked in GUI)
popservername  = 'pop.rmi.net:110'             # for connection
popusername    = 'lutz@rmi.net'                # for account login
popusesSSL     = False                         # no SSL on earthlink at all (?!)

# send (password asked in GUI if needed)
# smtpservername = 'smtp.comcast.net:465'      # opt port# (see SSL/TLS configs)
# smtpuser       = 'veramark62'                # nonblank=authenticated/password
# smtpusesSSL    = True                        # secure with SSL?
 
# SEP2019: comcast may (DID) go away...
smtpservername = 'smtpauth.earthlink.net:587'  # opt port# (see SSL/TLS configs)
smtpuser       = 'lutz@rmi.net'                # nonblank=authenticated/password
smtpusesTLS    = True                          # secure with SSL?

# all other settings same as RmiDotNet



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