I am trying to debug why my the support ticket system I am setting up is not pulling the POP email from my Google Apps email.
I set up a cron job for this, per the instructions of the developer of the support ticket system:
php -q /home/username/public_html/support_ticket_sw/pipe/pop.php >/dev/null 2>&1
Then, based on some other thread on this site, I did this...
php -q /home/username/public_html/support_ticket_sw/pipe/pop.php >/dev/null 2>&1 | mail -s "cron output" myemail@mydomain.com
...Now I get emails but they are empty. Do I need to put something relevant in stead of "cron output". I assumed that is the email subject line but maybe thre should go the output of the cron job? I don't know what that is...