librenms/includes/services/pop/check.inc
2008-07-18 08:21:45 +00:00

14 lines
200 B
PHP

<?php
$check = `scripts/services/check_pop -H $service[hostname]`;
list($check, $time) = split("\|", $check);
if(strstr($check, "POP OK - ")) {
$status = '1';
} else {
$status = '0';
}
?>