OTRS is used in security departments and companies for long time due to the well documented code and some background in the CERT area.
In one of my recent projects the team wanted to simplify some of their processes additional to the main goals of the implemenation project. We decided to start with the authorization process for taking photos inside their business locations. Until now they had a paper based permission process.
So created a small process within OTRS. Now the customer can request a permission in the customer webinterface or by sending a mail to a special email address.
For starting a process from an email you need to create a postmaster filter which points to the process ID and the activity id of the first activity in this process.
The ticket now shows up the in the Dashboard Calendar
and the agent can go through the authorization
This will trigger an automated email via notification event to the customer
In the event based notification we can use the OTRS Notification Tags to access the values of the used dynamic fields.
After the photos are taken the user needs to send them to the ticket so an agent can approve or deny the publishing of the photo.
For building this process we need:
- several dynamic fields as shown below
- an event based notification on authorized request
- an event based notification on non authorized request
- an event based notification on approval or denying the publishing request
- a process
- a post master filter as shown on top
- some ACL rules to make it smooth
Dynamic Fields
The export can be found here (remove the .txt if needed): Export_ProcessEntityID_P5.yml
ACL
You should also add an ACL to remove closed states on sending replies or forwarding.
Small process designs like this one can really increase the acceptance of your system in simple way. Just start to imagine which processes might fit for you!