Any ideeas on why tickets are created from emails in reverse order (newest first / LIFO) ?Fetching 2 emails every minute on cron job running on Centos 5 + Dovecot IMAPS (993).Server InformationosTicket Versionv1.9.12 (19292ad) —  Up to dateWeb Server SoftwareApacheMySQL Version5.5.46PHP Version5.5.30

I've asked the devs and await their response.

12 days later

Change line 834 in include/class.mailfetch.php from:for($i=$nummsgs; $i>0; $i--) { //process messages in reverse.tofor($i=1; $i<=$nummsgs; $i++) { //process messages in forward order.This will process the emails oldest to newest.

Write a Reply...