Allow empty Return-Path for specific IP / username...

pinooo

Verified User
Joined
Dec 1, 2004
Messages
15
Hi,

I have a client that is using a mailbox on our server as a smart relay host for his Exchange server. That works for all the E-mails they send through our server, but the Out Of Office reply's that Exchange generates are not being forwarded by our server because of the empty return-path...

Is there a way to tell Exim / Directadmin to allow those e-mail's to be relayed from a specific user or IP ?

The related error message:

X=TLSv1:AES128-SHA:128 CV=no F=<> A=login:eek:[email protected] rejected RCPT <[email protected]>: We didn't send the message



Remco
 
Last edited:
Bump..

Still nobody an idea without just commenting out this part in Exmi.conf ?

# Deny all Mailer-Daemon messages not for us:
deny message = We didn't send the message
senders = :
domains = !+relay_domains
 
Hello,

Code:
  [B]accept  hosts = +auth_relay_hosts
[/B]          condition = ${if eq {$interface_port}{587} {yes}{no}}
          endpass
          message = RELAY_NOT_PERMITTED_AUTH
          authenticated = *
  # Deny all Mailer-Daemon messages not for us:
  deny message = We didn't send the message

Add the trusted IP into auth_relay_hosts and use 587 port
 
Back
Top