Closed
Bug 1042635
Opened 11 years ago
Closed 11 years ago
[ReMo] Update dev and stage local settings.py
Categories
(Infrastructure & Operations Graveyard :: WebOps: Community Platform, task)
Infrastructure & Operations Graveyard
WebOps: Community Platform
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: nemo-yiannis, Assigned: cturra)
Details
(Whiteboard: [kanban:https://kanbanize.com/ctrl_board/4/578] )
Hi, we would like to make a couple of changes in settings/local.py of our dev and stage deployments:
* reps-dev.allizom.org
* reps.allizom.org
The changes are the following:
* Append 'database_email_backend' to INSTALLED_APPS
** If we already override INSTALLED_APPS in local.py we need just to append 'database_email_backend' to the list. [1]
** Else we need to do a similar change to this [2]
* Change EMAIL_BACKEND to 'remo.base.utils.DevEmailBackend'
** EMAIL_BACKEND = 'database_email_backend.backend.DatabaseEmailBackend'
There is an example setup in our local.py-dist [3]
Thank you!
[1] https://pastebin.mozilla.org/5595540
[2] https://pastebin.mozilla.org/5595539
[3] https://github.com/mozilla/remo/blob/master/remo/settings/local.py-dist#L77
Assignee | ||
Comment 1•11 years ago
|
||
back in bug 1009479 we added the following config...
INSTALLED_APPS = base.INSTALLED_APPS + ['database_email_backend']
EMAIL_BACKEND = 'database_email_backend.backend.DatabaseEmailBackend'
can you please provide a sample of what this should be changed to? it wasn't that clear to be in your description.
Assignee: server-ops-webops → cturra
Flags: needinfo?(jgiannelos)
OS: Linux → All
Hardware: x86_64 → All
Reporter | ||
Comment 2•11 years ago
|
||
Really sorry for that, I totally messed the old setup with the new :)
What we need to change is only this:
EMAIL_BACKEND = 'remo.base.utils.DevEmailBackend'
Flags: needinfo?(jgiannelos)
Assignee | ||
Comment 3•11 years ago
|
||
thnx for the clarification. the EMAIL_BACKEND update is now complete in dev and stage :)
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 4•11 years ago
|
||
Verified it in stage. Email backend seems to be working as expected.
Status: RESOLVED → VERIFIED
Updated•7 years ago
|
Product: Infrastructure & Operations → Infrastructure & Operations Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•