aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tools/mail.py
diff options
context:
space:
mode:
authorRodney Ewing <ewing.rj@gmail.com>2013-05-24 12:48:29 -0700
committerElrond <elrond+mediagoblin.org@samba-tng.org>2013-05-27 23:33:18 +0200
commit02b6892c290671ac956144a212785d98ae579ef4 (patch)
treede587608d98fb6bc95d41fa2a3cb41bfff354bfb /mediagoblin/tools/mail.py
parent97aebda7ded46181af1c5e9560be8251d4c56d36 (diff)
downloadmediagoblin-02b6892c290671ac956144a212785d98ae579ef4.tar.lz
mediagoblin-02b6892c290671ac956144a212785d98ae579ef4.tar.xz
mediagoblin-02b6892c290671ac956144a212785d98ae579ef4.zip
moved email_debug_message to gmg/tools/mail
Diffstat (limited to 'mediagoblin/tools/mail.py')
-rw-r--r--mediagoblin/tools/mail.py15
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.")