Hi,Im have been trying for a while to set up a cronjob that fetches emails from my mailbox every minute, but I have some trouble.I should maybe start saying that my knowledge about cron jobs and things like this is limited.Here is my setup:osTicket Versionv1.9.3 (bba9ccc)Server SoftwareApache/2.4.7 (Ubuntu)PHP Version5.5.9-1ubuntu4.4I have the email settings in place and working, and have up to this point been using the auto cron so that if we're logged in it fetches the emails. But now I would like to set the server up to fetch emails all the time, even when no one is logged in. I have setup my crontab with the following entry:*/1 * * * * root /usr/bin/php -q /var/www/html/api/cron.phpI can see in my syslog on the server that the job is running every minute, but I get the "error": (CRON) info (No MTA installed, discarding output)I googled for this, and heard that you could add >/dev/null 2>&1 after the command, but that didn't help either. Is it needed to have a Mail Transfer Agent for this to work?Is there anyone out there that got some tips for me on how to get this to work?Currently I have not modified any file in the osticket install, is it something that should be added to some file? Some API key or some other info?