I configured a new job for my generic agent like this:
Code: Select all
%Jobs = (
# --
# [name of job] -> send reminder emails to agents
# --
'send reminder emails to agents' => {
# get all tickets with these properties
Queue => 'Misc',
States => ['new', 'open'],
SLA => 'SLA24/7',
DynamicField_SLA247 => {
Equals => 'O',
},
DynamicField_Intervention => {
Equals => [ 'Problem','Crash', undef ],
},
# new ticket properties (no option is required,
# use just the options which should be changed!)
New => {
# if you want to add a Note
Note => {
From => 'GenericAgent',
Subject => 'Mail to hotline',
Body => 'Ticket with SLA',
ArticleType => 'note-internal',
},
},
},
# --
);
Code: Select all
DynamicField_Intervention => {
Equals => [ 'Problem','Crash', undef ],
},
I tried also
Code: Select all
DynamicField_Intervention => {
Equals => [ 'Problem','Crash', '' ],
},
Code: Select all
DynamicField_Intervention => {
Equals => [ 'Problem','Crash', '-' ],
},
Can you help me please
Thanks in advance