Round robin user asignation: this addon is used to automatically assign new tickets to a group of users.
- Working osTicket versions:
- v1.9.2
- v1.9.3
- Remeber to change the value of:
- $from
- $host
- $username
- $password
- ost_db
- ost_user
- ost_password
- You need to create a database table called "okm_assigner" with this definition
CREATE TABLE okm_assigner (
id tinyint(4),
tickets int(11),
mail varchar(50),
active tinyint(1) COLLATE utf8_bin DEFAULT NULL
);
- Once created you can create a cron task to call the script:
# m h dom mon dow command
*/5 * * * * /usr/bin/php /home/osticket/assigner.php