I want to use Rt-crontool to modify tickets automaticaly.
When a creator has not answered within 15 days, the ticket is resolved.
So I do this :
/opt/rtms/bin/rt-crontool --search RT::Search::FromSQL --search-arg "(Queue = 9) AND (Status = ‘stalled’ OR Status = ‘open’) AND LastUpdated > ‘15 days ago’ AND Creator != LastUpdatedBy " --action RT::Action::SetStatus --action-arg resolved
I did some tests and I noticed that it ignores these fields : “Creator” and “LastUpdatedBy”
What is wrong ?
Thanks