On Wed, Jul 19, 2006 at 10:04:54PM +0100, Brian Candler wrote:
> I seem to remember there's a way to compile courier so that it uses a
> different separator, specifically for the case where you have a Microsoft
> storage backend. Google or search the list archives.

Found it. There is a constant MDIRSEP defined in maildir/config.h:

/* Maildir target separator */
#define MDIRSEP ":"

and there is an autoconf option which sets it to ":" normally but changes it
to "!" in the case of building under cygwin:

if test "$target_os" = "cygwin"
then
        AC_DEFINE_UNQUOTED(MDIRSEP, "!",
        [ Maildir target separator ])
else
        AC_DEFINE_UNQUOTED(MDIRSEP, ":",
        [ Maildir target separator ])
fi

So by tweaking either maildir/configure (prior to configure) or
maildir/config.h (after configure but before make) you should be able to
force the use of "!" instead.

HTH,

Brian.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Courier-imap mailing list
[email protected]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-imap

Reply via email to