create a per user generic forwarder?

synergy

Verified User
Joined
Nov 8, 2003
Messages
48
Location
Australia
I have a client that wants to forward their DA domain email (example.com) to their current domain name (current-domain.com) hosted elsewhere. Instead of updating the email forwarders for every single user is it possible to create a "generic" forwarder from

*@example.com to *@current-domain.com

E.g.:

[email protected] arrives on the DA box but is automatically forwarded to [email protected]

and

[email protected] automatically goes to [email protected]

etc.

without having to create a new forwarder for each and every user? Is there such a thing as a wildcard forwarder?

Thanks in advance.
 
Can't you set the DNS for the mail to point to the other host and set up a domain pointer for example.com on that host? That way the mail goes directly to the other domain without any need to use forwarding.
 
No way to do it through DA.

It could be done with customization of the exim.conf file.

Jeff
 
Code:
######################################################################
#                      REWRITE CONFIGURATION                         #
######################################################################

# There are no rewriting specifications in this default configuration file.

begin rewrite

*@domein.tld [email protected]

This should do it. I hope somebody else can use this too. Thanks for all the support.
 
Back
Top