From: Caleb Forbes Davis V Date: Mon, 29 Aug 2011 02:41:42 +0000 (-0500) Subject: needed to access email_sender_address through mg_globals.app_config X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=f85909c061a6cff211cf27f46879ad096ae7852f;p=mediagoblin.git needed to access email_sender_address through mg_globals.app_config instead of mg_globals.email_sender_address. --- diff --git a/mediagoblin/auth/lib.py b/mediagoblin/auth/lib.py index df93b666..31dc4b7f 100644 --- a/mediagoblin/auth/lib.py +++ b/mediagoblin/auth/lib.py @@ -146,7 +146,7 @@ def send_fp_verification_email(user,request): # TODO: There is no error handling in place send_email( - mg_globals.email_sender_address, + mg_globals.app_config['email_sender_address'], [user['email']], 'GNU MediaGoblin - Change forgotten password!', rendered_email)