[rt-users] Move ticket queue on date expiry

Tom Lanyon tom at netspot.com.au
Thu Sep 2 17:43:24 EDT 2010


On 03/09/2010, at 5:59 AM, Gareth Tupper wrote:
> That sounds great.  Currently, I can build a search that says:
> Status != 'resolved' AND LastUpdated < '2010-09-02' 
> 
> What's the correct syntax for something like:
> 
> Status != 'resolved' AND LastUpdated < (TODAY-3) 


RT uses Perl's Time::ParseDate module for parsing dates, so anything accepted by Time::ParseDate will do...

This:
	LastUpdated < '3 days ago'
would be my preference, but:
	LastUpdated < '- 3 days'
will also work.

Regards,
Tom





More information about the rt-users mailing list