Replies: 3 comments 2 replies
-
The SMTP configuration seemed to work after a server REBOOT! Is there a simpler way to reflect the configuration without a server reboot? |
Beta Was this translation helpful? Give feedback.
-
I also did recognize that the SMTP configuration needs a server reboot... I also can't get it running without smtp username and username passowrd (m365 mail connector does not need username/passowrd because it gets validated via IP Adress....) |
Beta Was this translation helpful? Give feedback.
-
it's actually the celery_worker that needs to be restarted in order for new smtp options to take effect, so this is what the reboot has accomplished. ideally any setting like this will be moved to the database level, so no file editing and no restarts will be necessary. |
Beta Was this translation helpful? Give feedback.
-
Describe the issue
SMTP settings been set as per instruction but contact form notification is not being sent to admin emails.
To Reproduce
Steps to reproduce the issue:
Expected behavior
Contact form message notification should arrive at admin emails.
Environment (please complete the following information):
Additional context
SMTP settings
EMAIL_HOST = "mail.smtp_server.com"
EMAIL_HOST_USER = "mediacms.test@smtp_server.com"
EMAIL_HOST_PASSWORD = "CORRECT_PASSWORD"
EMAIL_PORT = 587
EMAIL_USE_TLS = True
DEFAULT_FROM_EMAIL = "mediacms.test@smtp_server.com"
SERVER_EMAIL = DEFAULT_FROM_EMAIL
ADMIN_EMAIL_LIST = ["[email protected]", "[email protected]"]
Test information
Beta Was this translation helpful? Give feedback.
All reactions