![]() |
home
| search
|
How can I change the ticket masks to a different format?Ticket masks obscure your internal ticket IDs. This is important because:
In the file cerb4/api/Application.class.php, near line 247, you will find: static function generateTicketMask($pattern = "CCC-CCCCC") { $pattern is the format of the ticket mask. You can use the following tokens: L - Random letter N - Random number C - Random letter or number Y - Current year (4-digit) M - Current month (01-12) D - Current Day (01-31) It's important to re-state that your ticket mask pattern should have an amount of randomness to it. Your helpdesk may receive a lot of mail in a very short time period, so purely date-driven masks won't be sufficient. There's also another caveat: Make sure your ticket mask doesn't produce an entirely numeric number (i.e., without dashes, etc). The helpdesk can use internal IDs and masks interchangeably on most functionality, so if your mask looks like an ID you will run into trouble. It's possible for support for more pattern tokens to be added, you can make suggestions from the project portal. Forward-compatibility notice: This process may become a configuration setting from the GUI in a future update. It will depend on how often people seek to change the default mask pattern. |
| powered by Cerberus Helpdesk™ |