<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># qmailadmin-monitor.pl
# Monitor the qmail server on this host

# Check the PID file to see if qmail is running
sub get_qmailadmin_status
{
local %qconfig = &amp;foreign_config($_[1]);
-d $qconfig{'qmail_dir'} || return { 'up' =&gt; -1 };
local ($pid) = &amp;find_byname("qmail-send");
if ($pid) {
	return { 'up' =&gt; 1 };
	}
else {
	return { 'up' =&gt; 0 };
	}
}

sub parse_qmailadmin_dialog
{
&amp;depends_check($_[0], "qmailadmin");
}

1;

</pre></body></html>