software:requesttracker:autoqueue
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| software:requesttracker:autoqueue [2024/08/29 19:27] – rodolico | software:requesttracker:autoqueue [2024/08/30 01:29] (current) – rodolico | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Auto-Queue scrips ====== | ====== Auto-Queue scrips ====== | ||
| - | ===== Based on sender e-mail ===== | + | ===== Auto Queue based on sender e-mail ===== |
| This scrip (not a typo, a scrip is an RT Script) can be added in the global scrip section and will automatically put a ticket in the proper queue based on the sender' | This scrip (not a typo, a scrip is an RT Script) can be added in the global scrip section and will automatically put a ticket in the proper queue based on the sender' | ||
| Line 8: | Line 8: | ||
| Note: A handy regex tester I use quite a bit is located at [[https:// | Note: A handy regex tester I use quite a bit is located at [[https:// | ||
| + | |||
| + | * Description: | ||
| + | * Condition: On Create | ||
| + | * Action: User Defined | ||
| + | * Template: Blank | ||
| + | * Enabled: check | ||
| + | * Custom Condition: empty | ||
| + | * Custom action preparation code: <code perl> | ||
| + | * Custom action commit code: code which follows | ||
| <code perl> | <code perl> | ||
| Line 29: | Line 38: | ||
| return 1; | return 1; | ||
| </ | </ | ||
| + | |||
| + | ===== Placing mail to different addresses in different queues ===== | ||
| + | |||
| + | This is easy to do in RT, if you are using aliases to route them. For example, if you have // | ||
| + | <code bash> | ||
| + | support: " | ||
| + | support-comment: | ||
| + | </ | ||
| + | which will redirect the incoming mail to Request Tracker' | ||
| + | |||
| + | In order to add new clients, you can create different aliases for each to correspond with; in this case, client1 and client2, which would go into the queue' | ||
| + | <code bash> | ||
| + | support: " | ||
| + | support-comment: | ||
| + | client1: " | ||
| + | client1-comment: | ||
| + | client2: " | ||
| + | client2-comment: | ||
| + | </ | ||
| + | |||
| + | Now, mail sent to client1@example.com would be forwarded to client1@rt.example.com, | ||
software/requesttracker/autoqueue.1724977644.txt.gz · Last modified: 2024/08/29 19:27 by rodolico
