this is the part where it fails:
Code: Select all
pop3_daemon_running = check_listening_port(110)
if pop3_daemon_running:
if not sxsystem.is_server_daemon_running("pop3") and not sxsystem.is_server_service_running("pop3"):
syscheck_fail(check_name, "A non-Scalix POP3 service is already running. You must stop it before continuing.")
result = set_result(result, FAIL)
The check_listening_port will finally run just a
Code: Select all
netstat -ln | grep ':110'
the last chance
