How to block top level domain(TLD) in Zimbra

How to block top level domain(TLD) in Zimbra


   KB 24438        Last updated on 2023-05-7  




0.00
(0 votes)

Problem

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

Solution

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”.

3. 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.

4. Take the backup of following file.

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

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

$ 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

6.Restart the mta service and verify the changes.

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

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


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