You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our SMTP relay works fine because we have multiple devices working on it. When checking the django logs, I can see the email sender working just fine but the emails are not coming through. Is there any other place I can check to see what's going on?
[2023-02-10 13:33:50,690: INFO/MainProcess] Connected to redis://127.0.0.1:6379/1
[2023-02-10 13:33:50,695: INFO/MainProcess] mingle: searching for neighbors
[2023-02-10 13:33:51,706: INFO/MainProcess] mingle: all alone
[2023-02-10 13:33:51,716: INFO/MainProcess] short1@stacms ready.
[2023-02-10 13:34:15,128: INFO/MainProcess] Received task: djcelery_email_send_multiple[55f69add-c1be-40ce-a959-0fc032c493a9]
[2023-02-10 13:34:15,154: INFO/ForkPoolWorker-7] Task djcelery_email_send_multiple[55f69add-c1be-40ce-a959-0fc032c493a9] succeeded in 0.025544470000113506s: 1
[2023-02-10 13:34:15,168: INFO/MainProcess] Received task: djcelery_email_send_multiple[ad32f18f-a13d-4d91-a598-1d4c7cd46705]
[2023-02-10 13:34:15,180: INFO/ForkPoolWorker-7] Task djcelery_email_send_multiple[ad32f18f-a13d-4d91-a598-1d4c7cd46705] succeeded in 0.010947658000077354s: 1
[2023-02-10 13:36:41,724: INFO/MainProcess] Received task: save_user_action[74784a67-b768-4c25-8504-265502901041]
[2023-02-10 13:36:42,116: INFO/ForkPoolWorker-7] Task save_user_action[74784a67-b768-4c25-8504-265502901041] succeeded in 0.3906887049997749s: True
I checked the other SMTP discussions with no help.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,
I'm trying to set up the MediaCMS email notifications via our internal relay server. Here are my settings for the email section:
I've redacted our domain.
DEFAULT_FROM_EMAIL = "[email protected]"
EMAIL_HOST_PASSWORD = ""
EMAIL_HOST_USER = ""
EMAIL_USE_TLS = False
SERVER_EMAIL = DEFAULT_FROM_EMAIL
EMAIL_HOST = "172.29.104.245"
EMAIL_PORT = 25
ADMIN_EMAIL_LIST = ["[email protected]"]
Our SMTP relay works fine because we have multiple devices working on it. When checking the django logs, I can see the email sender working just fine but the emails are not coming through. Is there any other place I can check to see what's going on?
[2023-02-10 13:33:50,690: INFO/MainProcess] Connected to redis://127.0.0.1:6379/1
[2023-02-10 13:33:50,695: INFO/MainProcess] mingle: searching for neighbors
[2023-02-10 13:33:51,706: INFO/MainProcess] mingle: all alone
[2023-02-10 13:33:51,716: INFO/MainProcess] short1@stacms ready.
[2023-02-10 13:34:15,128: INFO/MainProcess] Received task: djcelery_email_send_multiple[55f69add-c1be-40ce-a959-0fc032c493a9]
[2023-02-10 13:34:15,154: INFO/ForkPoolWorker-7] Task djcelery_email_send_multiple[55f69add-c1be-40ce-a959-0fc032c493a9] succeeded in 0.025544470000113506s: 1
[2023-02-10 13:34:15,168: INFO/MainProcess] Received task: djcelery_email_send_multiple[ad32f18f-a13d-4d91-a598-1d4c7cd46705]
[2023-02-10 13:34:15,180: INFO/ForkPoolWorker-7] Task djcelery_email_send_multiple[ad32f18f-a13d-4d91-a598-1d4c7cd46705] succeeded in 0.010947658000077354s: 1
[2023-02-10 13:36:41,724: INFO/MainProcess] Received task: save_user_action[74784a67-b768-4c25-8504-265502901041]
[2023-02-10 13:36:42,116: INFO/ForkPoolWorker-7] Task save_user_action[74784a67-b768-4c25-8504-265502901041] succeeded in 0.3906887049997749s: True
I checked the other SMTP discussions with no help.
Beta Was this translation helpful? Give feedback.
All reactions