PDA

View Full Version : mailman works with DA?


empowering
07-18-2006, 03:55 PM
I have a customer who wants to use mailman and we have a problems with the exim.conf

In order to prevent duplicate Emails we had to comment out unseen in the virtual_aliases_nostar.


virtual_aliases_nostar:
driver = redirect
allow_defer
allow_fail
data = ${if exists{/etc/virtual/${domain}/aliases}{${lookup{$local_part}lsearch{/etc/virtual/${domain}/aliases}}}}
file_transport = address_file
group = mail
pipe_transport = virtual_address_pipe
retry_use_local_part
#unseen


The problem is then this prevents aliases that also map up to email accounts from working.

Is there a way to get this to work without modifing exim.conf

DirectAdmin Support
07-18-2006, 08:12 PM
In the 2nd alias director: virtual_aliases
Try changing this line:data = ${if exists{/etc/virtual/${domain}/aliases}{${lookup{$local_part}lsearch{/etc/virtual/${domain}/aliases}}}}todata = ${if exists{/etc/virtual/${domain}/aliases}{${lookup{*}lsearch{/etc/virtual/${domain}/aliases}}}}as it's only purpose is to handle the catch-all anyway, so you could try explicitly searching for just the catch-all.

John

empowering
07-19-2006, 07:46 AM
nope completely broke exim and user accounts.