I'm not able to get my osTicket instance to fetch emails from a gmail account and I am not quite sure why. Wondering if I could get a little help. I am able to send test emails and case notes outbound, but I'm not pulling anything in from the gmail inbox.

This is a fresh osTicket install. I know that the gmail account is working because we are using it currently with our other helpdesk system and I have also confirmed the credentials work and that I can see the test emails in the inbox. I reviewed the documentation on email configuration and followed along with the gmail configuration video and everything was pretty uneventful. I have allowed less secure apps, I have configured a scheduled task on the windows server (not sure if I did it correctly though), and I have checked over the configuration settings a bunch of time. I have tried all combinations of the fetch enable and auto-cron checkboxes. But still nothing. What did I miss?

System specs: Windows Server 2016, osTicket 1.14.1, IIS10, MySQL 5.5.45, PHP 7.3.13

    mccrolly Hi
    Did you save the IMAP/POP configuration without problems? if that is not the case so what you have to do is create a cronjob in yuor server to call the cron.php in api folder and also i commented this line /*if (!osTicket::is_cli())
    die(__('cron.php only supports local cron calls - use http -> api/tasks/cron'));*/
    to avoid an error message.
    After that the fetch works fine.
    Hope you can fix it.

      ozkr

      I was able to save the email config without any issues. I've actually saved it successfully a bunch of times as I have been messing around with setting hoping and praying that I can get it to work. I can send outbound, no problem, but the incoming fetching is still not working. I'm running on a Widows server, and it sounds like your cron job may be linux... or it could be my inexperience with osTicket...

      I tried setting up a scheduled task, but the official docs just have a little one-liner that says "for windows users in scheduled task add.." There isn't enough detail for me to make sense of exactly what is needed.

      I found this other forum post ( https://forum.osticket.com/d/96490-resolved-tickets-not-fetching-with-gmail/3 ) where one user give a bit more detail about a batch file with the scheduled task, which I have tried to configure based on that info, but that isn't working either. The scheduled task does run successfully every 5 minutes, just no mail fetching.

      This sucks...

      • ozkr replied to this.

        mccrolly configure the fetch to create a folder in the email account and check if the folder is created.
        try to go directly to the cron.php in your browser to force the fetch. Also in the API option you have to add your ip address to let the cronjob work.
        Try to post some images of the configuration so we can help in a better way.

          ozkr
          Thanks for the follow up. I think I got it sorted out now. Your previous comment about the cron job got me thinking, so I did some more poking around. My original batch file that had the full path for php.exe in it wasn't working correctly.

          Old batch file: "C:\Program Files (x86)\PHP\v7.3\php.exe C:\inetpub\wwwroot\osTicket\api\cron.php"

          I did some Google searching and found this article: http://burnignorance.com/php-programming-tips/how-do-i-run-a-php-script-using-windows-task-scheduler/

          I went through hat and made sure the Path system variable was pointing to the correct php.exe. I then was able to shorten down the batch file and it has been running successfully for the past couple hours.

          New batch file: "php C:\inetpub\wwwroot\osTicket\api\cron.php"

          Thanks for the help and for the ideas. Now I am on to the next problem. haha.

          • ozkr replied to this.
            Write a Reply...