Hi,

I am using the latest stable version of Roundcube (0.7.2). I have enabled the managesieve plugin and got it working with my Dovecot2 installation. The issue I am facing at the moment is that the iMAP server uses a namespace of INBOX.<foldername>. When I create rules using the managesieve plugin, the INBOX. Namespace is ignore:

# Sieve filter

require ["fileinto"];
# rule:[Facebook]
if allof (header :contains "From" "@facebookmail.com")
{
fileinto "Facebook";
stop;
}

It should be:

Fileinto "INBOX.Facebook";

I have searched and found the svn log showing when this feature was added into the managesieve plugin (back in version 1.2). Not sure what I am doing wrong here.

Any help would be appreciated.

Pritpal