[OGo-Users] Unix style imap folders.

Adam Tauno Williams users@opengroupware.org
Wed, 17 Jan 2007 07:17:29 -0500


> I have a problem with getting ogo to generate the right sieve scripts.
> On our mail server we use cyrus-imapd whith the unixhierarchysep: 1
> option. Hence the imap server uses a / as seperator.

http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1664

> I run opengroupware.org 1.1 on debian sarge.
> When ogo genereate a sieve script they look like this:
> require ["fileinto"];
> if allof (header :matches ["to"] "postmaster*")
>  {
> fileinto "INBOX.postmaster";
>  }
> elsif allof (header :matches ["subject"] "[SPAM]*")
>  {
> fileinto "INBOX.Spam";
>  }
> elsif allof (header :contains ["to"] "root@")
>  {
> fileinto "INBOX.root";
>  }
> Here it is seen that . is used as a seperator.
> Is there any way of telling ogo to use the unix style seperators?