Matthew Daubenspeck wrote:
> I am trying to use Exim's .forward/filtering system to redirect
> mailing list messages into different folders. The .forward files seem
> to work as long as the messages are delivered to a single file.
> However, I am using Maildir. This is my .forward config:
>
> userforward:
> driver = forwardfile
> file_transport = address_file
> pipe_transport = address_pipe
> reply_transport = address_reply
add this:
directory_transport = maildir_delivery
> no_verify
> check_ancestor
> file = .forward
> modemask = 002
> filter
>
> And my testing .forward:
>
> # Exim filter
> if $h_From: contains "test@???" then
> save /home/user/Maildir/.Test/
> endif
>
> And the results:
>
> 2002-11-05 13:03:34 189834-0003o4-00 == /home/user/Maildir/.MDaemon/
> <local@???> D=userforward defer (-31): directory_transport unset
> in userforward driver
This says you have no directory_transport in your userforward director,
(This isn't that hard to understand ;))
ciao