mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-05 23:20:40 +00:00
fix: discussion email notification not work.
Discussion email notification relies on edx_ace and celery routing key for ace is not set properly by default, which causes the send mail task is never consumed. Close #439.
This commit is contained in:
parent
1b9334e37e
commit
58c77ad3fb
@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥".
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
- [Bugfix] Fix discussion notification not work.
|
||||||
- [Improvement] Better error logging when loading a plugin from an incompatible version.
|
- [Improvement] Better error logging when loading a plugin from an incompatible version.
|
||||||
|
|
||||||
## v11.2.11 (2021-05-18)
|
## v11.2.11 (2021-05-18)
|
||||||
|
@ -47,6 +47,7 @@
|
|||||||
"EMAIL_HOST": "{{ SMTP_HOST }}",
|
"EMAIL_HOST": "{{ SMTP_HOST }}",
|
||||||
"EMAIL_PORT": {{ SMTP_PORT }},
|
"EMAIL_PORT": {{ SMTP_PORT }},
|
||||||
"EMAIL_USE_TLS": {{ "true" if SMTP_USE_TLS else "false" }},
|
"EMAIL_USE_TLS": {{ "true" if SMTP_USE_TLS else "false" }},
|
||||||
|
"ACE_ROUTING_KEY": "edx.lms.core.default",
|
||||||
"HTTPS": "{{ "on" if ENABLE_HTTPS else "off" }}",
|
"HTTPS": "{{ "on" if ENABLE_HTTPS else "off" }}",
|
||||||
"LANGUAGE_CODE": "{{ LANGUAGE_CODE }}",
|
"LANGUAGE_CODE": "{{ LANGUAGE_CODE }}",
|
||||||
"SESSION_COOKIE_DOMAIN": ".{{ LMS_HOST|common_domain(CMS_HOST) }}",
|
"SESSION_COOKIE_DOMAIN": ".{{ LMS_HOST|common_domain(CMS_HOST) }}",
|
||||||
|
Loading…
Reference in New Issue
Block a user