<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body>
<div style="font-family:sans-serif"><div style="white-space:normal">
<p dir="auto">On 15 Feb 2020, at 12:27, Armin Schindler wrote:</p>

</div>
<div style="white-space:normal"><blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><p dir="auto">On 15.02.2020 12:16, Tobias Kirchhofer wrote:<br>
...</p>
<blockquote style="border-left:2px solid #777; color:#999; margin:0 0 5px; padding-left:5px; border-left-color:#999"><p dir="auto">    the sieve part seems to be very tricky.<br>
    My test is now working with a public folder and I have a<br>
    "sieve_before" script in place which works for rules of the<br>
    private namespace.<br>
<br>
    But when the rule shall "fileinto" a public folder, the mail isn't<br>
    filtered (moved) and syslog says<br>
    dovecot: lmtp(.): Error ... sieve...: Mailbox doesn't exist.<br>
<br>
    After some tests I found out it always looks in the private (or shared)<br>
    namespace for that specfied folder.<br>
    Do I miss a config option to let dovecot sieve "fileinto" a public<br>
    namespace folder?<br>
    I use dovecot version 2.2.13.<br>
<br>
We „fileinto“ in this manner :<br>
<br>
|fileinto „Namespace/folder“; |</p>
</blockquote><p dir="auto">This is what is not working for me.<br>
<br>
Your procedure below is good and maybe I will use parts of it, thank<br>
you. But this part is working for already. The incoming mail<br>
is sent to dovecot (postfix virtual alias working) and the<br>
match in sieve script is correct too.<br>
The problem is that dovecot (sieve) refuses to<br>
 fileinto "Namespace/folder"<br>
because it seems it wants to store the mail<br>
in private namespace with "folder1/folder2" instead.<br>
The first part of the fileinto path isn't used as<br>
namespace name.<br>
Is there a config option for this behaviour?</p>
</blockquote></div>
<div style="white-space:normal">

<p dir="auto">Maybe you are missing an include?</p>

<p dir="auto">We have:</p>

<pre style="background-color:#F7F7F7; border-radius:5px 5px 5px 5px; margin-left:15px; margin-right:15px; max-width:90vw; overflow-x:auto; padding:5px" bgcolor="#F7F7F7"><code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0" bgcolor="#F7F7F7">require "fileinto";
require "mailbox";
require "envelope";
require "subaddress";
require "variables";
require "regex";
require "editheader";
require "include";

</code></pre>

<p dir="auto">In dovecot.conf* i found no directly related settings. Just the usual sieve settings explained here <a href="https://wiki.dovecot.org/Pigeonhole/Sieve/Configuration" style="color:#3983C4">https://wiki.dovecot.org/Pigeonhole/Sieve/Configuration</a></p>

<p dir="auto">Can you see the Public namespace and the folder in your MUA or via telnet?</p>

<p dir="auto">Are you sure the ACL are correct? Can be that the error message „Mailbox doesn't exist“ is misleading and the permissions are not correct.</p>

<p dir="auto">Here you can see how to debug if not already <a href="https://wiki.dovecot.org/Pigeonhole/Sieve/Configuration#Trace_Debugging" style="color:#3983C4">https://wiki.dovecot.org/Pigeonhole/Sieve/Configuration#Trace_Debugging</a></p>

</div>
<div style="white-space:normal"><blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><p dir="auto">Armin<br>
</p>
<blockquote style="border-left:2px solid #777; color:#999; margin:0 0 5px; padding-left:5px; border-left-color:#999"><p dir="auto">The procedure in our setup is like this:<br>
<br>
 1. Virtual alias for each public-Folder email address within postfix:<br>
<br>
Pattern:<br>
folder@domain.tld <<a href="mailto:folder@domain.tld" style="color:#999">mailto:folder@domain.tld</a>><br>
listadm+Namespace/folder@domain.tld <<a href="mailto:folder@domain.tld" style="color:#999">mailto:folder@domain.tld</a>><br>
Example:<br>
info@domain.tld <<a href="mailto:info@domain.tld" style="color:#999">mailto:info@domain.tld</a>><br>
listadm+Verteiler/info@domain.tld <<a href="mailto:info@domain.tld" style="color:#999">mailto:info@domain.tld</a>><br>
<br>
Verteiler is the namespace, info the mailbox. listadm is a pseudo user<br>
in this context which holds the ACL for fileinto the resulting mailbox<br>
with proper permissions.<br>
<br>
 2. Disassemble the virtual alias address with sieve:<br>
<br>
Excerpt of the script. It is actually more code because we sort out spam<br>
for public folder. German comments, sorry.<br>
<br>
|# Hat Subadresse? if envelope :matches :detail "to" "*" { #<br>
Adressaufbau: listadm+Namespace/liste@ # ${liste} wird Namespace/box set<br>
"liste" "${1}"; } […] fileinto "${liste}"; |<br>
<br>
I can send you the whole script if you need.</p>
</blockquote></blockquote></div>
<div style="white-space:normal">

<p dir="auto">-- <br>
<a href="mailto:collect@shift.agency" style="color:#3983C4">collect@shift.agency</a></p>
</div>
</div>
</body>
</html>