Skip to main content

Fixing DMARC & Reverse DNS does not match SMTP Banner

Comments

2 comments

  • cPanelMichael
    Hello, If the email and DNS is hosted on the cPanel server, you can setup the DMARC record using the "Add DMARC Record" instructions from the following document: Zone Editor - Documentation - cPanel Documentation The reverse DNS warnings appear to stem from Google. You won't be able to alter those records because they are controlled by Google as opposed to your cPanel server. Thank you.
    0
  • amccristovao
    Hello, For the Reverse DNS does not match SMTP banner i got a solution it worked for me: at the top of exim.conf (line 2): disable_ipv6 local_interfaces = 127.0.0.1 : aaa.aaa.aaa.aaa : bbb.bbb.bbb.bbb : ccc.ccc.ccc.ccc smtp_active_hostname = ${lookup{$interface_address}lsearch{/etc/virtual/smtp_active_hostnames}{$value}} smtp_banner = "$smtp_active_hostname ESMTP $tod_full" exim.conf driver section (line 2015) remote_smtp: driver = smtp headers_rewrite = * ${perl{get_headers_rewrite}} f headers_add = "${perl{get_headers_rewritten_notice}}" interface = "${lookup{$sender_address_domain}lsearch{/etc/virtual/domainips}{$value}{aaa.aaa.aaa.aaa}{bbb.bbb.bbb.bbb}{ccc.ccc.ccc.ccc}}" helo_data = "${lookup{$sending_ip_address}lsearch{/etc/virtual/helo_data}{$value}{$primary_hostname}}" hosts_try_chunking = 198.51.100.1 create directory /etc/virtual/ Inside this directory create this 3 files: "smtp_active_hostnames" with following content: aaa.aaa.aaa.aaa: mail.hostname_for_domain_a bbb.bbb.bbb.bbb: mail.hostname_for_domain_b ccc.ccc.ccc.ccc: mail.hostname_for_domain_c "helo_data" with following content: aaa.aaa.aaa.aaa: mail.domain2.com bbb.bbb.bbb.bbb: mail.domain3.com ccc.ccc.ccc.ccc: mail.domain4.com "domainips" with following content: domain_a: aaa.aaa.aaa.aaa domain_b: bbb.bbb.bbb.bbb domain_c: ccc.ccc.ccc.ccc Hope it helps
    0

Please sign in to leave a comment.