zenoss-stack 2.2.3

Does not start when using default port of 25 even when nothing is using port 25
/usr/local/zenoss/zenoss/Products/ZenEvents/zenmail.py

Problem resolved by changing the following line
from:
:if (self.options.useFileDescriptor < 0  and \
            self.options.listenPort < 1024):
            self.openPrivilegedPort('--listen',
                                    '--proto=tcp',
                                    '--port=%d' % self.options.listenPort)

if (not self.options.useFileDescriptor  and \
            self.options.listenPort < 1024):
            self.openPrivilegedPort('--listen',
                                    '--proto=tcp',
                                    '--port=%d' % self.options.listenPort)




-------------------- m2f --------------------

Read this topic online here:
http://community.zenoss.com/forums/viewtopic.php?p=23327#23327

-------------------- m2f --------------------



_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users

Reply via email to