View Single Post
Old 12-11-2007, 06:09 AM   #2
Senior Member
 
Join Date: Jun 2007
Posts: 105
Wishmaster is an unknown quantity at this point
Default

This will be fixed in a cleaner manner in the next update, but for now, here's a way to solve the problem :
Delete one of the closing braces in the config file in the routers section after the line message.txt

Wrong
Code:
autoreplay:
driver = accept
condition = ${if exists{ ${extract{4}{:}{${lookup{$local_part@$domain}lsear ch{/usr/local/etc/exim/passwd}}}}/message.txt}} {yes} {no}}
retry_use_local_part
transport = address_reply
unseen


Correct
Code:
autoreplay:
driver = accept
condition = ${if exists{ ${extract{4}{:}{${lookup{$local_part@$domain}lsear ch{/usr/local/etc/exim/passwd}}}}/message.txt} {yes} {no}}
retry_use_local_part
transport = address_reply
unseen

Last edited by Wishmaster; 12-11-2007 at 09:17 AM.
Wishmaster is offline   Reply With Quote