Revision history of "How to create options to move tickets to a Spam Queue"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 07:56, 22 June 2023Ronaldo talk contribs 2,071 bytes +2,071 Created page with "To add a spam menu to ticket display page, you can make it via a callback, i.e. Create "/opt/rt5/local/html/Callbacks/MyRT/Elements/Tabs/Privileged" with the following content(Replace queue id "3" with your real Spam queue id): <pre> <%INIT> my $request_path = $HTML::Mason::Commands::r->path_info; $request_path =~ s!/{2,}!/!g; if ( $request_path =~ m{^/Ticket/} and my $id = $DECODED_ARGS->{id} ) { my $ticket = RT::Ticket->new( $session{CurrentUs..."