summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-24 03:21:52 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-24 03:21:52 -0400
commit987e571c04ef4501e0b3422c8fd47ab31b0d4ab2 (patch)
treeea3b3c4234fb83eeaaa81f78c9b1beefa4d38ae2
parentcef6a23e58cb81e28be2dc2f77fd35eac89c3060 (diff)
downloadaskbot-987e571c04ef4501e0b3422c8fd47ab31b0d4ab2.tar.gz
askbot-987e571c04ef4501e0b3422c8fd47ab31b0d4ab2.tar.bz2
askbot-987e571c04ef4501e0b3422c8fd47ab31b0d4ab2.zip
made a change in the email routing
-rw-r--r--askbot/mail/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/mail/__init__.py b/askbot/mail/__init__.py
index d72cc890..3b4dde38 100644
--- a/askbot/mail/__init__.py
+++ b/askbot/mail/__init__.py
@@ -403,7 +403,7 @@ def process_emailed_question(
reply_to = ReplyAddress.objects.create_new(
user = user,
reply_action = 'validate_email'
- ).as_email_address()
+ ).as_email_address(prefix='-welcome')
message = messages.ask_for_signature(user, footer_code = reply_to)
raise PermissionDenied(message)