[#32488017] merge conflicts

pull/1/head
eric 2012-07-10 16:03:36 -04:00
commit 15ea12534a
2 changed files with 14 additions and 5 deletions

View File

@ -7,6 +7,7 @@ logger = logging.getLogger(__name__)
from celery.task import task
from django.contrib.auth.models import User
from django.conf import settings
from regluit.core import bookloader, models
from regluit.core import goodreads, librarything
@ -60,10 +61,17 @@ def fac(n, sleep_interval=None):
@task
def send_mail_task(subject, message, from_email, recipient_list,
fail_silently=False, auth_user=None, auth_password=None,
connection=None):
"""a task to drop django.core.mail.send_mail into """
try:
r=send_mail(subject, message, from_email, recipient_list, fail_silently=False, auth_user=auth_user,
connection=None, override_from_email=True):
"""a task to drop django.core.mail.send_mail into """
# NOTE: since we are currently using Amazon SES, which allows email to be sent only from validated email
# addresses, we force from_email to be one of the validated address unless override_from_email is FALSE
try:"
if override_from_email:
try:
from_email = settings.DEFAULT_FROM_EMAIL
except:
pass
r= send_mail(subject, message, from_email, recipient_list, fail_silently=False, auth_user=auth_user,
auth_password=auth_password, connection=connection)
except:
r=logger.info('failed to send message:' + message)

View File

@ -172,7 +172,8 @@ LOGGING = {
# django-registration
EMAIL_HOST = 'smtp.gluejar.com'
DEFAULT_FROM_EMAIL = 'info@gluejar.com'
DEFAULT_FROM_EMAIL = 'notices@gluejar.com'
SERVER_EMAIL = 'notices@gluejar.com'
ACCOUNT_ACTIVATION_DAYS = 30
# django-socialauth