Title: SMTP Fix to restart SMTP Service Post by: DukeOfAwesome on Sunday 31 December 2006, 06:28:11 pm Please change the following line(line 379) in
/usr/local/bin/restartsmtpd.py from: iptables = ' iptables -A SMTPD -i %s -p %s -m %s --dport %s -j ACCEPT' % ( interface, proto, proto, port ) to: iptables = '/sbin/iptables -A SMTPD -i %s -p %s -m %s --dport %s -j ACCEPT' % ( interface, proto, proto, port ) |