summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/models/reply_by_email.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/askbot/models/reply_by_email.py b/askbot/models/reply_by_email.py
index 0fe243c3..290337fc 100644
--- a/askbot/models/reply_by_email.py
+++ b/askbot/models/reply_by_email.py
@@ -51,7 +51,8 @@ class ReplyAddress(models.Model):
)#the emailed post
reply_action = models.CharField(
max_length = 32,
- choices = REPLY_ACTION_CHOICES
+ choices = REPLY_ACTION_CHOICES,
+ default = 'auto_answer_or_comment'
)
response_post = models.ForeignKey(
Post,