On 12/30/21 4:48 PM, David Newman wrote:
The etc/mailman3/settings.py file includes these settings:
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST = 'localhost' EMAIL_PORT = 25
These 2 (localhost and port 25) are defaults.
EMAIL_HOST_USER = 'dnewman@networktest.com' EMAIL_HOST_PASSWORD = 'wouldnt-you-like-to-know'
Why are you authenticating? This should not be necessary.
EMAIL_USE_TLS = 'True' EMAIL_SSL_CERTFILE = '/etc/ssl/certs/myhost.crt' EMAIL_SSL_KEYFILE = '/etc/ssl/private/myhost.key'
And why are you trying to use TLS? This is only for SMTP between Django and the MTA on the loopback port. TLS is overkill.
But this might only be for email, not Postorius/Django.
Actually it is only for mail from Django
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan