{
    use esmith::config;
    use esmith::db;

    local %services = ( fetchmail => $fetchmail );

    my $status = db_get_prop(\%services, "fetchmail", 'status');

    if (!defined $status || $status ne "enabled")
    {
    }
    else
    {
	my $method = db_get_prop(\%services, "fetchmail", 'Method');
	if (!defined $method)
	{
	    $OUT .= "# This service is enabled but no Method is specified";
	}
    }
}
