Login  Register

Re: Remove "Send Email" option with NAML

Posted by mark on Jan 05, 2020; 1:02am
URL: https://support.nabble.com/Remove-Send-Email-option-with-NAML-tp7591364p7604798.html

I figured out how make emails only show up for a custom group (on n8.nabble.com, at the very least)! Here's how:

Create a new user group called Emailers. Add all users to this group that you want to be able to email (including administrators). This is only good for forums where you don't mind doing that.

Create macros named emailers_group and is_emailer. The code for each is below.

<macro name="emailers_group">
    Emailers
</macro> 

<macro name="is_emailer" requires="user">
    <n.is_in_group group="[n.emailers_group/]" />
</macro> 

Then, modify the macro called send_email_to_user_link to say the following:

 <override_macro name="send_email_to_user_link" requires="user">
    <n.set_local_user.this_user />
    <!-- If this is not the profile of the visitor AND the user is authenticated -->
    <n.if.both condition1="[n.not.visitor.equals.local_user/]" condition2="[n.local_user.is_authenticated/]">
        <then>
            <n.if.visitor.is_emailer>
                <then>
                    <div style="margin-top:.5em">
                        <img src="/images/mail.png" align="absmiddle" width="18" height="13"/>
                        <a href="[n.local_user.send_email_path/]"><t>Send Email to <t.author.local_user.name/></t></a> (This will reveal your email address.)
                    </div>
                </then>
                <else>
                    <div style="margin-top:.5em">
                        You do not have email privileges.
                    </div>
                </else>
            </n.if.visitor.is_emailer>
        </then>
    </n.if.both>
</override_macro> 

The overriden code on mine is this, again (just in case anyone else's is different):
 <macro name="send_email_to_user_link" requires="user">
    <n.set_local_user.this_user />
    <!-- If this is not the profile of the visitor AND the user is authenticated -->
    <n.if.both condition1="[n.not.visitor.equals.local_user/]" condition2="[n.local_user.is_authenticated/]">
        <then>
            <div style="margin-top:.5em">
                <img src="/images/mail.png" align="absmiddle" width="18" height="13"/>
                <a href="[n.local_user.send_email_path/]"><t>Send Email to <t.author.local_user.name/></t></a>
            </div>
        </then>
    </n.if.both>
</macro>