Forwarding Outgoing SMTP mail

senocak

New member
Joined
Nov 2, 2009
Messages
3
Is there a way to forward outgoing mail to the addressed person + specific mail addresses?

Example [email protected] is the sender.

I would like all sent mail from [email protected] to also be delivered to [email protected] so that we can have an archive of sent mail on another account.

If there is a way in da control panel will do if not but there is a script or mod I am willing to do that too.

Thanks for all the help and time!
 
Hi,
You can add it at /etc/system_filter.exim with sample as below:
----------------------------------------------------------------------------------------
if $sender_address_domain is example.com
then
unseen deliver [email protected]
endif
--------------------------------------------------------------------
 
Hi,
You can add it at /etc/system_filter.exim with sample as below:
----------------------------------------------------------------------------------------
if $sender_address_domain is example.com
then
unseen deliver [email protected]
endif
--------------------------------------------------------------------

hi there, Is there any additional services that have to be restarted or a few syntax to be added into the /etc/system_filter.exim? cause it doesnt seem to be working for me.

thanks
 
I'm not sure if exim reads the system filter once on start, or each time it's called. Try restarting exim.

Jeff
 
Check the logs to see if there is a error with the system filter.
 
Back
Top