I never made that a configurable option, but you can fix it in the code, if you want to.&nbsp; Find this line in subscriptions.module:<br><br>return array(array('title' =&gt; t('Subscription settings'), 'data' =&gt; form_checkbox(t('Automatically subscribe to threads in which you post.'), 'subscriptions_auto', 1, isset($edit-&gt;subscriptions_auto) ? $edit-&gt;subscriptions_auto : $user-&gt;subscriptions_auto, t('Checking this box allows you to be automatically subscribe to any thread you create or post a comment to.'))));
<br><br>Look at this section:<br>isset($edit-&gt;subscriptions_auto) ? $edit-&gt;subscriptions_auto : $user-&gt;subscriptions_auto<br><br>I think you can change ...<br><br>: $user-&gt;subscriptions_auto<br><br>to <br><br>
: true<br><br>That's someone else's edit, so I'm not sure what &quot;$user-&gt;subscriptions_auto&quot; is supposed to offer, thut that whole block is the &quot;checked: value of the checkbox.<br><br>I should probably add this as an option - I've had people ask about it before.
<br clear="all"><br>-- <br>Dan Ziemecki<br>&nbsp;<br><br><div><span class="gmail_quote">On 4/4/06, <b class="gmail_sendername">VJ Rao</b> &lt;<a href="mailto:cmsconsultant@gmail.com">cmsconsultant@gmail.com</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi,<br><br>Im using subscriptions module for 4.6<br><br>How do I make 'auto subscribe' feature default? I couldnt find a way
<br>through settings.<br><br>If I have to do this in code, which table/column stores this information?<br><br>Thanks,<br><br>V<br></blockquote></div><br>