I have regular cpanel hosting and I need a cronjob or a small program to dump the main mail inbox every day. I know there is a cron for this but don't know how to code it. Help appreciated.
try something along the lines of this. this will run every 12 hours but you can change it rather easily. didnt know how often you wanted to perform the action 0 */12 * * * /home/user/maildump.php > /dev/null 2>&1 Code (markup): /dev/null is pretty much the garbage collecter. so output there and you shouldn't have to worry about anything.
whoops. yeah that would be a good idea. didnt think about that. haven't done any work running php through cron but he's right. you need to use php -q to execute it. 0 */12 * * * php -q /home/user/maildump.php > /dev/null 2>&1 Code (markup):