The lines I have for the FW are different, also squid contains these lines to allow access.
squid...
Code:
acl SSL_ports port 443 563
acl Safe_ports port 443 563 # https, snews
iptables script...
Code:
..........snip....
# EGRESS (upstream)
#
# SSH
$IPTABLES -t mangle -A POSTROUTING -p tcp --dport 22 -j MARK --set-mark 10
# Web, SSL
$IPTABLES -t mangle -A POSTROUTING -p tcp --dport 80 -j MARK --set-mark 20
$IPTABLES -t mangle -A POSTROUTING -p tcp --dport 443 -j MARK --set-mark 20
..........snip....
I also have the https use the same proxy in the "WebBrowser settings".
Hope this helps, Regards Glenn