How to block top level domain(TLD) in Zimbra: Difference between revisions

No edit summary
No edit summary
Line 25: Line 25:


Add following line as per the screenshot:
Add following line as per the screenshot:
$ vim /opt/zimbra/conf/zmconfigd.cf


REWRITE common/conf/postfix_reject_sender.re.in common/conf/postfix_reject_sender.re
$ vim /opt/zimbra/conf/zmconfigd.cf
 
REWRITE common/conf/postfix_reject_sender.re.in common/conf/postfix_reject_sender.re


[[File:zmconfigd_cf.png]]
[[File:zmconfigd_cf.png]]
Line 46: Line 47:


The file path "regexp:/opt/zimbra/common/conf/postfix_reject_sender.re" should be there.
The file path "regexp:/opt/zimbra/common/conf/postfix_reject_sender.re" should be there.
Now check and verify.


'''Note:''' This is the Postfix level customization, which is not supported by Zimbra and it will not remain same after an upgrade the server. Please follow the above steps in test environment first then apply on production.
'''Note:''' This is the Postfix level customization, which is not supported by Zimbra and it will not remain same after an upgrade the server. Please follow the above steps in test environment first then apply on production.

Revision as of 07:19, 14 June 2022

How to block top level domain(TLD) in Zimbra?


   KB 24438        Last updated on 2022-06-14  




0.00
(0 votes)

Steps

1. Create a “postfix_reject_sender.re.in” file and add the TLD to block.

$ vim /opt/zimbra/common/conf/postfix_reject_sender.re.in
/\.icu$/   REJECT
/\.site$/  REJECT
/\.host$/  REJECT
/\.fun$/   REJECT

Save the file.


2. Now take the backup of zmconfigd.cf file before adding new line.

$ cp /opt/zimbra/conf/zmconfigd.cf /opt/zimbra/conf/zmconfigd.cf.org

Open “/opt/zimbra/conf/zmconfigd.cf” file and go to the MTA section or search “SECTION mta DEPENDS amavis”.

Add following line as per the screenshot:

$ vim /opt/zimbra/conf/zmconfigd.cf
REWRITE common/conf/postfix_reject_sender.re.in common/conf/postfix_reject_sender.re

Zmconfigd cf.png

Save the file.

3.Open the file “/opt/zimbra/conf/zmconfigd/smtpd_sender_restrictions.cf” and add the following line as per screenshot.

$ cp /opt/zimbra/conf/zmconfigd/smtpd_sender_restrictions.cf /opt/zimbra/conf/zmconfigd/smtpd_sender_restrictions.cf.org
$ vim /opt/zimbra/conf/zmconfigd/smtpd_sender_restrictions.cf
%%contains VAR:zimbraServiceEnabled mta^ check_sender_access regexp:/opt/zimbra/common/conf/postfix_reject_sender.re%%

Smtpd sender restrictions.png

4. Now restart the MTA service.

$ zmmtactl restart
$ postconf -n | grep -i smtpd_sender_restrictions

The file path "regexp:/opt/zimbra/common/conf/postfix_reject_sender.re" should be there.

Now check and verify.

Note: This is the Postfix level customization, which is not supported by Zimbra and it will not remain same after an upgrade the server. Please follow the above steps in test environment first then apply on production.

Jump to: navigation, search