How can I make the default notification settings more aggressive? Currently on my install when you sign-up you get no notifications for new questions. I'd like for every user to auto get notifications for all new questions. How can I do this?

asked 26 Jun '11, 20:08

Nathan%20Lands's gravatar image

Nathan Lands
16189
accept rate: 0%


To make the default subscription settings more aggressive you can edit forum.models.user.SubscriptionSettings class model and change the values of the default attributes.

member_joins = models.CharField(max_length=1, default='n')
new_question = models.CharField(max_length=1, default='n')
new_question_watched_tags = models.CharField(max_length=1, default='i')
subscribed_questions = models.CharField(max_length=1, default='i')

#auto_subscribe_to
all_questions = models.BooleanField(default=False)
all_questions_watched_tags = models.BooleanField(default=False)
questions_viewed = models.BooleanField(default=False)

#notify activity on subscribed
notify_answers = models.BooleanField(default=True)
notify_reply_to_comments = models.BooleanField(default=True)
notify_comments_own_post = models.BooleanField(default=True)
notify_comments = models.BooleanField(default=False)
notify_accepted = models.BooleanField(default=False)

send_digest = models.BooleanField(default=True)
link

answered 27 Jun '11, 14:39

Jordan's gravatar image

Jordan ♦♦
3.1k618
accept rate: 38%

My quesion goes further: How can I enable all these notifications by default? By now, once a new user registers, notifications are turned off and need to be turned on manually through the "start/stop notifications" button in the "user tools" -> "email notification settings". Thanks!

link

answered 04 Jan, 10:47

Michael%20Lanzinger's gravatar image

Michael Lanz...
16235
accept rate: 0%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×47
×24

Asked: 26 Jun '11, 20:08

Seen: 323 times

Last updated: 04 Jan, 10:47

powered by OSQA