Commit 6b6e5680 by Adam Palay

remove instances of @edx.org email addresses in our default settings

Bug: LMS-1363
parent 71ece15c
...@@ -195,9 +195,9 @@ IGNORABLE_404_ENDS = ('favicon.ico') ...@@ -195,9 +195,9 @@ IGNORABLE_404_ENDS = ('favicon.ico')
# Email # Email
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
DEFAULT_FROM_EMAIL = 'registration@edx.org' DEFAULT_FROM_EMAIL = 'registration@example.com'
DEFAULT_FEEDBACK_EMAIL = 'feedback@edx.org' DEFAULT_FEEDBACK_EMAIL = 'feedback@example.com'
SERVER_EMAIL = 'devops@edx.org' SERVER_EMAIL = 'devops@example.com'
ADMINS = () ADMINS = ()
MANAGERS = ADMINS MANAGERS = ADMINS
......
...@@ -11,7 +11,9 @@ ...@@ -11,7 +11,9 @@
<p>${_('The page that you were looking for was not found.')} <p>${_('The page that you were looking for was not found.')}
${_('Go back to the {homepage} or let us know about any pages that may have been moved at {email}.').format( ${_('Go back to the {homepage} or let us know about any pages that may have been moved at {email}.').format(
homepage='<a href="/">homepage</a>', homepage='<a href="/">homepage</a>',
email='<a href="mailto:technical@edx.org">technical@edx.org</a>')} email=u'<a href="mailto:{address}">{address}</a>'.format(
address=settings.TECH_SUPPORT_EMAIL,
))}
</p> </p>
</section> </section>
</div> </div>
......
...@@ -11,7 +11,11 @@ ...@@ -11,7 +11,11 @@
<p> <p>
${_("An error occurred in Studio and the page could not be loaded. Please try again in a few moments.")} ${_("An error occurred in Studio and the page could not be loaded. Please try again in a few moments.")}
${_("We've logged the error and our staff is currently working to resolve this error as soon as possible.")} ${_("We've logged the error and our staff is currently working to resolve this error as soon as possible.")}
${_('If the problem persists, please email us at {email}.').format(email='<a href="mailto:technical@edx.org">technical@edx.org</a>')} ${_('If the problem persists, please email us at {email_link}.').format(
email_link=u'<a href="mailto:{email_address}">{email_address}</a>'.format(
email_address=settings.TECH_SUPPORT_EMAIL,
)
)}
</p> </p>
</section> </section>
</div> </div>
......
...@@ -437,12 +437,12 @@ IGNORABLE_404_ENDS = ('favicon.ico') ...@@ -437,12 +437,12 @@ IGNORABLE_404_ENDS = ('favicon.ico')
# Platform Email # Platform Email
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
DEFAULT_FROM_EMAIL = 'registration@edx.org' DEFAULT_FROM_EMAIL = 'registration@example.com'
DEFAULT_FEEDBACK_EMAIL = 'feedback@edx.org' DEFAULT_FEEDBACK_EMAIL = 'feedback@example.com'
SERVER_EMAIL = 'devops@edx.org' SERVER_EMAIL = 'devops@example.com'
TECH_SUPPORT_EMAIL = 'technical@edx.org' TECH_SUPPORT_EMAIL = 'technical@example.com'
CONTACT_EMAIL = 'info@edx.org' CONTACT_EMAIL = 'info@example.com'
BUGS_EMAIL = 'bugs@edx.org' BUGS_EMAIL = 'bugs@example.com'
ADMINS = () ADMINS = ()
MANAGERS = ADMINS MANAGERS = ADMINS
...@@ -511,7 +511,7 @@ WIKI_LINK_DEFAULT_LEVEL = 2 ...@@ -511,7 +511,7 @@ WIKI_LINK_DEFAULT_LEVEL = 2
################################# Pearson TestCenter config ################ ################################# Pearson TestCenter config ################
PEARSONVUE_SIGNINPAGE_URL = "https://www1.pearsonvue.com/testtaker/signin/SignInPage/EDX" PEARSONVUE_SIGNINPAGE_URL = "https://www1.pearsonvue.com/testtaker/signin/SignInPage/EDX"
# TESTCENTER_ACCOMMODATION_REQUEST_EMAIL = "exam-help@edx.org" # TESTCENTER_ACCOMMODATION_REQUEST_EMAIL = "exam-help@example.com"
##### Feedback submission mechanism ##### ##### Feedback submission mechanism #####
FEEDBACK_SUBMISSION_EMAIL = None FEEDBACK_SUBMISSION_EMAIL = None
...@@ -522,7 +522,7 @@ ZENDESK_USER = None ...@@ -522,7 +522,7 @@ ZENDESK_USER = None
ZENDESK_API_KEY = None ZENDESK_API_KEY = None
##### shoppingcart Payment ##### ##### shoppingcart Payment #####
PAYMENT_SUPPORT_EMAIL = 'payment@edx.org' PAYMENT_SUPPORT_EMAIL = 'payment@example.com'
##### Using cybersource by default ##### ##### Using cybersource by default #####
CC_PROCESSOR = { CC_PROCESSOR = {
'CyberSource': { 'CyberSource': {
...@@ -540,7 +540,7 @@ PAID_COURSE_REGISTRATION_CURRENCY = ['usd', '$'] ...@@ -540,7 +540,7 @@ PAID_COURSE_REGISTRATION_CURRENCY = ['usd', '$']
#By setting up the default settings with an incorrect user name and password, #By setting up the default settings with an incorrect user name and password,
# will get an error when attempting to connect # will get an error when attempting to connect
OPEN_ENDED_GRADING_INTERFACE = { OPEN_ENDED_GRADING_INTERFACE = {
'url': 'http://sandbox-grader-001.m.edx.org/peer_grading', 'url': 'http://example.com/peer_grading',
'username': 'incorrect_user', 'username': 'incorrect_user',
'password': 'incorrect_pass', 'password': 'incorrect_pass',
'staff_grading': 'staff_grading', 'staff_grading': 'staff_grading',
...@@ -853,7 +853,7 @@ CELERYD_HIJACK_ROOT_LOGGER = False ...@@ -853,7 +853,7 @@ CELERYD_HIJACK_ROOT_LOGGER = False
# Suffix used to construct 'from' email address for bulk emails. # Suffix used to construct 'from' email address for bulk emails.
# A course-specific identifier is prepended. # A course-specific identifier is prepended.
BULK_EMAIL_DEFAULT_FROM_EMAIL = 'no-reply@courseupdates.edx.org' BULK_EMAIL_DEFAULT_FROM_EMAIL = 'no-reply@example.com'
# Parameters for breaking down course enrollment into subtasks. # Parameters for breaking down course enrollment into subtasks.
BULK_EMAIL_EMAILS_PER_TASK = 100 BULK_EMAIL_EMAILS_PER_TASK = 100
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment