Re: [exim] How to use save with Maildir and IMAP folder pref…

Top Page
Delete this message
Reply to this message
Author: Graeme Fowler
Date:  
To: exim-users
Subject: Re: [exim] How to use save with Maildir and IMAP folder prefix?
On Sat, 2007-04-07 at 12:04 +0700, Robert Nicholson wrote:
> should
>
> save Maildir/.INBOX.cron/
>
> save to a folder that IMAP folder prefix will see?


Yes. I use something like this:

# Exim users
if ("${if exists {$home/Maildir/.Lists.exim-users/} {yes}{no} }" is
"yes")
then
  if ($h_List-Id: contains "<exim-users.exim.org>")
  then
    save $home/Maildir/.Lists.exim-users/
  endif
endif


Graeme