Re: [exim] Re: exim and multiple Mailbox-Server

Top Page
Delete this message
Reply to this message
Author: Daniel Tiefnig
Date:  
To: exim-users
Subject: Re: [exim] Re: exim and multiple Mailbox-Server
Michelle Konzack wrote:
> I hav eread the exim4 docu but do not know, how to setup such system
> (e.g. maping)


As Michael explained, on the proxy server use a database lookup to
obtain the mbox server. We're using a manualroute router with the
following entry:

route_data = ${lookup mysql{ \
                SELECT node FROM user \
                 WHERE username = '${quote_mysql:$local_part}'\
                   AND domain = '${quote_mysql:$domain}'\
              }{$value}fail}


The manualroute router is described here:
http://exim.inode.at/exim-html-4.50/doc/html/spec_20.html#CHAP20

With a simple smtp transport, this will send mails to the mbox server
stored in the MySQL table.

> Can you suggest an POP/IMAP proxy ?


We're using "perdition" here: http://www.vergenet.net/linux/perdition/


lg,
daniel