You are not logged in.
Pages: 1
Selecting the "Get email tickets now" button under Main Gateways is working fine-email messages are picked up and process as expected.
I am unable to automate this process. I've added the following line to cron, and have also tried running the command from a shell prompt. I have confirmed that it is executing, but emails are not processed, and there is not any output.
*/5 * * * * /usr/bin/php5 /usr/local/Zend/apache2/htdocs/glpi/front/cron.php &>/dev/null
I must be missing something.
Thanks for your help.
Offline
Could you active the debug mode in configuration of GLPI and also enable trace file.
And have a look in /files/_log
JMD / Jean-Mathieu Doléans - Glpi-project.org - Association Indepnet
Apportez votre pierre au projet GLPI : Soutenir
Offline
Thank you for the prompt reply. The mailgate system is picking up emails correctly, I just was not being patent enough. After monitoring the _log/cron.log file, I observed the mailgate process executing every 12 minutes. How can I change the schedule to execute every 5 minutes?
Thanks!
Offline
in 'glpi/inc/cron.class.php' at line 133
$this->taches["mailgate"]=600;
Change 600 (it's in seconds)
AND
in cron, change every */5 in every 1minute */1 to be sure mails are get every 5 minutes
Last edited by ddurieux (2008-07-21 16:39:32)
Offline
Pages: 1