Multi_domain

Tazmanian79

Verified User
Joined
Jul 24, 2010
Messages
106
Hello,

I want to get rit of the error messages "Multiple destination domains per transaction is unsupported." when I send an email to multiple domains hosted by Google.

I know that this can be solved by adding multi_domain=false
But where exactly do I need to add that in exim.conf (and are other edits required?)

I'm using Exim 4.84



Thanks!
 
Hello,

add it into remote_smtp: section and restart exim.

If you use exim.conf 4.3.x, here what you should get:

Code:
#COMMENT#61:remote_smtp:
  driver = smtp
  headers_add = "${if def:authenticated_id{X-Authenticated-Id: ${authenticated_id}}}"
  interface = <; ${if exists{/etc/virtual/domainips}{${lookup{$sender_address_domain}lsearch{/etc/virtual/domainips}}}}
  helo_data = ${if exists{/etc/virtual/helo_data}{${lookup{$sending_ip_address}iplsearch{/etc/virtual/helo_data}{$value}{$primary_hostname}}}{$primary_hostname}}
[B]  multi_domain = false[/B]
.include_if_exists /etc/exim.dkim.conf


That's up to you to protect the /etc/exim.conf from being overwritten.
 
Back
Top