Skip to content

Commit 2a885b5

Browse files
committedMar 8, 2016
Mandrill is going down
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent d3ca86e commit 2a885b5

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed
 

‎nikolausers/settings.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@
2727

2828
ALLOWED_HOSTS = ['*']
2929

30-
MANDRILL_API_KEY = os.environ['MANDRILL_APIKEY']
31-
EMAIL_BACKEND = "djrill.mail.backends.djrill.DjrillBackend"
32-
DEFAULT_FROM_EMAIL = "users@getnikola.com"
30+
EMAIL_HOST = 'localhost'
31+
DEFAULT_FROM_EMAIL = "nikola-users@chriswarrick.com"
3332
import newrelic.agent
3433
newrelic.agent.initialize()
3534

‎requirements.txt

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
Django==1.8.7
2-
djrill==2.0
3-
mandrill==1.0.57
42
newrelic==2.58.2.45
53
psycopg2==2.6.1
64
pytz==2015.7

‎sites/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def add(request):
123123
send_mail("Nikola Users addition request for {0}".format(site.url),
124124
'{0} <{1}> has requested addition of "{2}" <{3}> to the Nikola Users site.\nPlease visit the admin panel to accept or reject it: https://users.getnikola.com/admin/'.format(
125125
site.author, site.email, site.title, site.url),
126-
'noreply@getnikola.com', ['users@getnikola.com'], fail_silently=False)
126+
'nikola-users@chriswarrick.com', ['users@getnikola.com'], fail_silently=False)
127127

128128
return render(request, 'add-ack.html', context)
129129
else:

0 commit comments

Comments
 (0)
Please sign in to comment.