iredmail-doc/en_US/overview/0-network.ports.md

65 lines
2.1 KiB
Markdown
Raw Normal View History

2015-05-10 04:52:36 -05:00
# Which network ports are open by iRedMail
2015-05-10 07:29:07 -05:00
[TOC]
2015-05-10 04:52:36 -05:00
## Web server (Apache or Nginx)
* 80: normal web service port
* 443: HTTPS (http over SSL, secure connection)
SOGo groupware provides Exchange ActiveSync (EAS) support through port 443.
## SMTP (Postfix)
* 25: normal smtp port, used for server-to-server communication.
* 587: Submission (SMTP over TLS), used for mail clients to send email.
* 465: smtps (SMTP over SSL). Deprecated, and disabled by default, please use
port 587 instead.
## MySQL
* 3306: default listen port. Listening on IP address `127.0.0.1` by default.
## PostgreSQL
* 5432: default listen port. Listening on IP address `127.0.0.1` by default.
## OpenLDAP
* 389: normal LDAP port, supports STARTTLS for secure connection.
* 636: LDAP over SSL. Deprecated, recommended to use port 387 with STARTTLS for
secure connection.
Listening on all available network interfaces by default, but access from
external network is blocked by firewall (iptables, pf).
## POP3/IMAP (Dovecot)
* 110: POP3 service, insecure connection. Supports STARTTLS for secure connection.
* 995: POP3S (Secure POP3 over SSL). Deprecated, recommended to use port 110 with STARTTLS.
* 143: IMAP service, insecure connection. Supports STARTTLS for secure connection.
* 993: IMAPS (Secure IMAP over SSL). Deprecated, recommended to use port 143 with STARTTLS.
* 2000: managesieve service. (Refuse connections from external network in iptables be default)
## Amavisd-new
* 10024: port used for inbound messages, includes spam/virus scanning, DKIM
verification, applying spam policy.
* 10026: port used for outbound messages, includes spam/virus scanning, DKIM
signing, apply spam policy.
2015-05-10 04:52:36 -05:00
* 9998: port used to manage quarantined emails.
All ports are listening on `127.0.0.1` by default.
## Policyd or Cluebringer (Postfix policy server)
* 10031: default listen port. Listening on IP address `127.0.0.1` by default.
!!! attention
Policyd and Cluebringer were removed since iRedMail-0.9.3.
2015-05-10 04:52:36 -05:00
## iRedAPD (Postfix policy server)
* 7777: default listen port. Listening on IP address `127.0.0.1` by default.