[OGo-Users] Unix style imap folders.
Anders Lynge Esbensen
users@opengroupware.org
Wed, 17 Jan 2007 09:35:22 +0100
Hi All
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.
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?
Best regards
/Anders