After looking around myself I have noticed several people not able to figure this out ao I am posting here on the fix as well. For those having trouble with KissMyFirewall and Cpanel...

This will fix the issue with now being able to do updates properly as well. icon_smile.gif

http://forum.rackshack.net/showthread.php?...=&postid=137808
http://www.geocities.com/steve93138/

Add these ports to the Special ports (#5)...
CODE
465 993 995 2080:2099


And now add this to the bottom of the firewall and restart it...
CODE
################################################################################

# INPUT - PORT 873 - Rsync

################################################################################

$IPTABLES -A INPUT -i eth0 -p udp --sport $UNPRIVPORTS --dport 873 -m state --state NEW -j ACCEPT

$IPTABLES -A INPUT -i eth0 -p tcp --sport $UNPRIVPORTS --dport 873 -m state --state NEW -j ACCEPT



################################################################################

# OUTPUT - PORT 873 - Rsync

################################################################################

$IPTABLES -A OUTPUT -o eth0 -p udp --sport $UNPRIVPORTS --dport 873 -m state --state NEW -j ACCEPT

$IPTABLES -A OUTPUT -o eth0 -p tcp --sport $UNPRIVPORTS --dport 873 -m state --state NEW -j ACCEPT


Hope that helps icon_smile.gif