menu_raw_mail

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "menu_raw_mail".
... in dropdown.naml
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
<macro name="menu_raw_mail" requires="node">
    <n.if.is_in_command name="dropdown">
        <then>
            dropdown.add('rawMail<n.id/>', '<n.javascript_string_encode.raw_mail_link/>', 'display:none');
        </then>
        <else>
            <n.set_local_node.this_node/>
            <n.if.local_node.message.is_imported_mail>
                <then.if.either condition1="[n.visitor.can_edit.local_node/]" condition2="[n.visitor.is_sysadmin/]">
                    <then>
                        NabbleDropdown.show('rawMail<n.local_node.id/>');
                    </then>
                </then.if.either>
            </n.if.local_node.message.is_imported_mail>
        </else>
    </n.if.is_in_command>
</macro>