HostOnNet Blog

Tag Archives: alert

PHP Script to alert if mail queue size is above X on Cpanel Server

I created a php script to alert if mail queue size if above 100. <?php $cmd =  ‘/usr/sbin/exim -bpc’; $num_mails = exec($cmd); if ($num_mails > 100) { $hostname = exec(‘/bin/hostname’); $subject = ‘Mail queue alert on ‘ . $hostname; $mail_text