reorder mail page again
This commit is contained in:
parent
a5db3e816a
commit
3aa5f0e89d
|
@ -459,6 +459,29 @@ Configure postfix for rspamd.
|
||||||
sudo postconf milter_mail_macros="i {mail_addr} {client_addr} {client_name} {auth_authen}"
|
sudo postconf milter_mail_macros="i {mail_addr} {client_addr} {client_name} {auth_authen}"
|
||||||
|
|
||||||
|
|
||||||
|
Firewall
|
||||||
|
========
|
||||||
|
Open TCP ports.
|
||||||
|
|
||||||
|
Confirm open sieve...
|
||||||
|
|
||||||
|
.. code-block:: sh
|
||||||
|
|
||||||
|
# Web
|
||||||
|
-A INPUT -p tcp --dport 80 -j ACCEPT
|
||||||
|
-A INPUT -p tcp --dport 443 -j ACCEPT
|
||||||
|
|
||||||
|
# Postfix
|
||||||
|
-A INPUT -p tcp --dport 25 -j ACCEPT
|
||||||
|
-A INPUT -p tcp --dport 587 -j ACCEPT
|
||||||
|
|
||||||
|
# Dovecot imaps
|
||||||
|
-A INPUT -p tcp --dport 993 -j ACCEPT
|
||||||
|
|
||||||
|
# Dovecot sieve
|
||||||
|
-A INPUT -p tcp --dport 4190 -j ACCEPT
|
||||||
|
|
||||||
|
|
||||||
Administration
|
Administration
|
||||||
==============
|
==============
|
||||||
Now that everything is working...
|
Now that everything is working...
|
||||||
|
@ -575,29 +598,6 @@ Delete Alias
|
||||||
DELETE FROM virtual_aliases WHERE source='melissa@example.org';
|
DELETE FROM virtual_aliases WHERE source='melissa@example.org';
|
||||||
|
|
||||||
|
|
||||||
Firewall
|
|
||||||
========
|
|
||||||
Open TCP ports.
|
|
||||||
|
|
||||||
Confirm open sieve...
|
|
||||||
|
|
||||||
.. code-block:: sh
|
|
||||||
|
|
||||||
# Web
|
|
||||||
-A INPUT -p tcp --dport 80 -j ACCEPT
|
|
||||||
-A INPUT -p tcp --dport 443 -j ACCEPT
|
|
||||||
|
|
||||||
# Postfix
|
|
||||||
-A INPUT -p tcp --dport 25 -j ACCEPT
|
|
||||||
-A INPUT -p tcp --dport 587 -j ACCEPT
|
|
||||||
|
|
||||||
# Dovecot imaps
|
|
||||||
-A INPUT -p tcp --dport 993 -j ACCEPT
|
|
||||||
|
|
||||||
# Dovecot sieve
|
|
||||||
-A INPUT -p tcp --dport 4190 -j ACCEPT
|
|
||||||
|
|
||||||
|
|
||||||
Email Client Setup
|
Email Client Setup
|
||||||
==================
|
==================
|
||||||
Set up mail clients thusly.
|
Set up mail clients thusly.
|
||||||
|
|
Loading…
Reference in a new issue