Re: Bug Report: Email Posts Over-ride "Reply" Permission Settings
Posted by
Hugo <Nabble> on
URL: https://support.nabble.com/Bug-Report-Email-Posts-Over-ride-Reply-Permission-Settings-tp7595168p7595201.html
It seems to me that the solution is to override the "save_post_by_email" macro like this:
<override_macro name="save_post_by_email" requires="post_by_email" unindent="true">
<n.fix_threading/>
<n.if.not.mail_author.can_post_under.replied_to_node>
<then.throw_template_exception name="banned" />
</n.if.not.mail_author.can_post_under.replied_to_node>
<n.if.not.mail_author.can_post_under.posted_node>
<then.throw_template_exception name="banned" />
</n.if.not.mail_author.can_post_under.posted_node>
<n.save_to_post/>
</override_macro>
The override adds a new if statement to the macro. Can you please try this and let me know if the issue still happens? If this works, I will release it to all servers. Thanks for reporting the issue.