You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Jeff Moe
c2b99f2c09
|
6 years ago | |
---|---|---|
.. | ||
etc/init.d | 7 years ago | |
lib/systemd/system | 7 years ago | |
README.md | 6 years ago | |
oca-install.sh | 7 years ago | |
oca-manual-modules | 7 years ago | |
oca9-dev | 6 years ago | |
oca11-addons | 7 years ago | |
odoo9-modules | 7 years ago |
README.md
Dev servers: ocadev2 ocadev3 ocadev4
AO Dev servers: once-dev1
On development servers, add this to firewall rules to block
sending/receiving of mails.
Block outgoing traffic to email ports...
SMTP, POP, IMAP, plus encrypted ports
Be sure to put before this line in the firewall rules:
-A OUTPUT -j ACCEPT
Allow only communications to localhost on port 25 ( -s IP )
-A OUTPUT -p tcp --dport 25 -o lo -d 127.0.0.1 -j ACCEPT
Allow only communications to localhost on IMAP port 993 ( -s IP )
-A OUTPUT -p tcp --dport 993 -o lo -d 127.0.0.1 -j ACCEPT
Block SMTP
-A OUTPUT -p tcp --dport 25 -j REJECT -A INPUT -p tcp --dport 25 -j REJECT
Block POP
-A OUTPUT -p tcp --dport 110 -j REJECT -A INPUT -p tcp --dport 110 -j REJECT
Block IMAP
-A OUTPUT -p tcp --dport 143 -j REJECT -A INPUT -p tcp --dport 143 -j REJECT
Block Email Submission
-A OUTPUT -p tcp --dport 587 -j REJECT -A INPUT -p tcp --dport 587 -j REJECT
Block encrypted IMAPS
-A OUTPUT -p tcp --dport 993 -j REJECT -A INPUT -p tcp --dport 993 -j REJECT
Block encrypted POP
-A OUTPUT -p tcp --dport 995 -j REJECT -A INPUT -p tcp --dport 995 -j REJECT