ShowPerQueueInstructions

From Request Tracker Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Specify Per-Queue instructions before message box

For certain queues, I like to have additional messages for users, telling them exactly what information is needed.

You can create /opt/rt3/local/html/Callbacks/MyCallbacks/Ticket/Create.html/BeforeMessageBox with the following contents:

   % if ( $QueueObj->Name eq 'MyQueue' ) {
        MyQueue Specific Info Here 
   % }
   <%ARGS>
       $QueueObj => undef
   

--Jim Perrin

See Also

CustomizingWithCallbacks