cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
566
Views
0
Helpful
1
Replies

POP3 port

xtech
Level 1
Level 1

Hi,

I have HTTPS and SMTP ports forwarded to the exchange server for email and OWA using SSL. I would like to open up pop3 and require a certificate. What do I put in place of the smtp? - pop3? If I require a certificate do I have to specify the port?

"access-list 100 permit tcp any host 67.153.199.199 eq smtp"

Thanks - Wayne

1 Reply 1

ehirsel
Level 6
Level 6

If you want to use ssl for smtp and pop3, you need to add these statements to your firewall config as they will not use the https port for ssl processing:

access-list 100 permit tcp any host 67.153.199.199 eq 110 (110 is pop non-ssl)

access-list 100 permit tcp any host 67.153.199.199 eq 995 (995 is pop over ssl)

You would need to configure one for smtp over ssl. I do not know what that port number is.