summaryrefslogtreecommitdiffstats
path: root/askbot/conf
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-08-23 11:07:56 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-08-23 11:07:56 -0400
commit757047027f78755b444d2cb777544c1eaea89910 (patch)
tree3b7aa0f15dee8e85779f755417f3cc89a590e8f6 /askbot/conf
parentb14450451180941e4c00bf5a479610796b57fd05 (diff)
downloadaskbot-757047027f78755b444d2cb777544c1eaea89910.tar.gz
askbot-757047027f78755b444d2cb777544c1eaea89910.tar.bz2
askbot-757047027f78755b444d2cb777544c1eaea89910.zip
simplified the login/signup pages, no more "signup for updates" question
Diffstat (limited to 'askbot/conf')
-rw-r--r--askbot/conf/email.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/askbot/conf/email.py b/askbot/conf/email.py
index 1b81fa96..9330e638 100644
--- a/askbot/conf/email.py
+++ b/askbot/conf/email.py
@@ -66,7 +66,7 @@ settings.register(
livesettings.StringValue(
EMAIL,
'DEFAULT_NOTIFICATION_DELIVERY_SCHEDULE_Q_ASK',
- default='w',
+ default='i',
choices=const.NOTIFICATION_DELIVERY_SCHEDULE_CHOICES,
description=_('Default notification frequency questions asked by the user'),
help_text=_(
@@ -80,7 +80,7 @@ settings.register(
livesettings.StringValue(
EMAIL,
'DEFAULT_NOTIFICATION_DELIVERY_SCHEDULE_Q_ANS',
- default='w',
+ default='d',
choices=const.NOTIFICATION_DELIVERY_SCHEDULE_CHOICES,
description=_('Default notification frequency questions answered by the user'),
help_text=_(
@@ -94,7 +94,7 @@ settings.register(
livesettings.StringValue(
EMAIL,
'DEFAULT_NOTIFICATION_DELIVERY_SCHEDULE_Q_SEL',
- default='w',
+ default='i',
choices=const.NOTIFICATION_DELIVERY_SCHEDULE_CHOICES,
description=_('Default notification frequency questions individually \
selected by the user'),
@@ -109,7 +109,7 @@ settings.register(
livesettings.StringValue(
EMAIL,
'DEFAULT_NOTIFICATION_DELIVERY_SCHEDULE_M_AND_C',
- default='w',
+ default='i',
choices=const.NOTIFICATION_DELIVERY_SCHEDULE_CHOICES,
description=_('Default notification frequency for mentions \
and comments'),