Step one:
/templates/base mail_box_compose_message.html
around line 85-91 find this
<div class="messages_options">
<label><input type="checkbox" id="to_mail"/>__send_copy_to__</label>
<br />
<label><input type="checkbox" id="to_my_mail"/>__send_copy_my__</label>
<br />
<label><input type="checkbox" id="notify_mail"/>__notify__</label>
</div>
and change it to this
<div class="message_actions">
<div class="messages_options">
<label><input type="checkbox" id="notify_mail"/>__notify__</label>
</div>
Step two: REPLAY page
/templates/base mail_box_replay_message.html
around line 57-63 find this
<div class="messages_options">
<label><input type="checkbox" id="to_mail"/>__send_copy_to__</label>
<br />
<label><input type="checkbox" id="to_my_mail"/>__send_copy_my__</label>
<br />
<label><input type="checkbox" id="notify_mail"/>__notify__</label>
</div>
change it to this
<div class="messages_options">
<label><input type="checkbox" id="notify_mail"/>__notify__</label>
</div>
how to make the "notify by email" option a defautl selection
find :
<label><input type="checkbox" id="notify_mail"/>__notify__</label>
change to:
<label><input type="checkbox" id="notify_mail" checked/>__notify__</label>