We're encountering a strange problem after upgrading to 1.11.
At first, I thought cron.php was not creating tickets at all. Emails would come into the mailbox and be deleted after cron.php ran, but no ticket was visible. After investigating the database tables, it turns out that cron.php is creating tickets correctly, but with ost_ticket.status_id = 0. This causes them to not be visible. Any tickets fetched with auto_cron are correctly created with ost_ticket.status_id = 1.
As a workaround, I copied the entry for ID = 1 in the ost_ticket_status table, set it to ID = 0 and name = 'Open0'. Doing this allows the emails fetched with cron.php to show up in our department, but no email alert is generated when they're fetched.
Is anybody aware of any fix which would correct this? The workaround is fine, but getting email alerts for all our tickets would be preferred.