Re: [exim] Submission mode: change return path without addin…

Top Page
Delete this message
Reply to this message
Author: Phil Pennock
Date:  
To: exim-users
Subject: Re: [exim] Submission mode: change return path without addingSender: header?
On 2008-02-12 at 15:00 -0500, Marc Sherman wrote:
> Is it possible to configure submission mode so that the return path of a
> message is set to the $authenticated_id, but there is no Sender: header
> created?


How about using "control = submission/sender_retain" and a rewrite in ye
olde "rewrite" section of the config with just the 'F' flag set?
Something like:

begin rewrite
* ${if def:authenticated_id {$authenticated_id}fail} F

(Assuming that the authenticated_id is domain-qualified)

-Phil