diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-05-24 12:48:29 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-05-24 18:16:53 -0700 |
commit | dd39fe6052ff41a2f64467e1019479c093bfe4da (patch) | |
tree | f72e4cadd7995b687bd5c9b06b01a28f52d6daae /mediagoblin/tools | |
parent | 92783bc1fd41efa228639703127523469614e9aa (diff) | |
download | mediagoblin-dd39fe6052ff41a2f64467e1019479c093bfe4da.tar.lz mediagoblin-dd39fe6052ff41a2f64467e1019479c093bfe4da.tar.xz mediagoblin-dd39fe6052ff41a2f64467e1019479c093bfe4da.zip |
moved email_debug_message to gmg/tools/mail
Diffstat (limited to 'mediagoblin/tools')
-rw-r--r-- | mediagoblin/tools/mail.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/mediagoblin/tools/mail.py b/mediagoblin/tools/mail.py index 4fa02ce5..6886c859 100644 --- a/mediagoblin/tools/mail.py +++ b/mediagoblin/tools/mail.py @@ -16,7 +16,7 @@ import smtplib from email.MIMEText import MIMEText -from mediagoblin import mg_globals +from mediagoblin import mg_globals, messages from mediagoblin.tools import common ### ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -135,3 +135,16 @@ def normalize_email(email): return None email = "@".join((em_user, em_dom.lower())) return email + + +def email_debug_message(request): + """ + If the server is running in email debug mode (which is + the current default), give a debug message to the user + so that they have an idea where to find their email. + """ + if mg_globals.app_config['email_debug_mode']: + # DEBUG message, no need to translate + messages.add_message(request, messages.DEBUG, + u"This instance is running in email debug mode. " + u"The email will be on the console of the server process.") |