<div dir="ltr"><div><div><div><div><div><div><div><div>No, it won't work.<br></div>"sieve_after" require user script to explicitly "keep" the message. If the script fails, the default action stores the message into INBOX, thus finishing executions of sieve scripts. So, in most wanted case the "sieve_after" which suppose to notify user about problems with his script will not be called. These logs contain messages about syntax errors which depend on the exact environment (say, the list of enabled Sieve extensions). Also they have reports about runtime problems like absent folder referenced in the script. It is a bad situation if user can not read these logs.<br><br></div>I see a couple workarounds.<br><br>First: a separate FilterSet which user can activate to get .dovecot.sieve.log when he wants. It can be something like<br>===<br></div><div>$ cat /srv/dovecot/seriv/.dovecot.sieve<br></div><div>require ["vnd.dovecot.execute"];<br># rule:[dovecot.sieve.log]<br>if header :contains "subject" "dovecot.sieve.log"<br>{<br>        execute "log_content.sh";<br>}<br>===<br></div>with <br>===<br>$ cat /usr/lib64/dovecot/sieve-extprograms/log_content.sh <br>#!/bin/bash<br>if test -s $HOME/.dovecot.sieve.log; then<br>  /usr/bin/mailx -s "sieve.log"  $recipient < $HOME/.dovecot.sieve.log<br>  /usr/bin/echo -n '' > $HOME/.dovecot.sieve.log<br>fi<br>====<br><br></div>Second: a separate user, say "<a href="mailto:givemelogs@imap.example.org">givemelogs@imap.example.org</a>" on my IMAP server. When user sends to this address a request, it replies with content of users .dovecot.sieve.log emptying it afterwards. It should have access to the "SENDER" external variable. If needed there should be 2 step authentication against forged "SENDER", sending cryptographically strong token and asking user to reply with the same token to authorize request and emptying log. But isn't it too much complexity for such thing as looking at the log?<br><br></div>Even another way, with proposed httpd access, can be set up to work with apache of the version 2.4.8+, using "LocationMatch" and environment variable set to matched regex in "Require User" statement, like:<br>===<br></div>$ cat /etc/httpd/conf.d/userdir.conf<br><IfModule mod_userdir.c><br>  UserDir /srv/dovecot<br>  Loglevel debug<br>  <DirectoryMatch "^/srv/dovecot/(?<WHICHUSER>[^/]+)"> <br>    AllowOverride None <br>    AuthType Basic <br>    AuthName 'private logs'<br>    AuthBasicProvider file <br>    AuthUserFile /etc/httpd/users <br>    Require user %{env:MATCH_WHICHUSER} <br>    SSLRequireSSL <br>    DirectoryIndex .dovecot.sieve.log <br>  </DirectoryMatch> <br></IfModule><br>===<br></div>Sure for this to work in production I will put "AuthBasicProvider ldap" and authenticate against the same LDAP server as dovecot uses. And I think I should place these sieve files into separate from mail directory like '/srv/sieve/', so that apache won't get access to mail.<br><br>-- <br></div><div>  Regards,<br></div><div>  Sergey<br></div><div><div><div><div><div><div><br></div></div></div></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Feb 8, 2018 at 3:43 AM, LuKreme <span dir="ltr"><<a href="mailto:kremels@kreme.com" target="_blank">kremels@kreme.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Feb 6, 2018, at 19:53, Sergey Ivanov <<a href="mailto:seriv@cs.umd.edu">seriv@cs.umd.edu</a>> wrote:<br>
> Answering myself (not yet implemented, but I hope it will work):<br>
> Using sieve  extprograms extension and global "after" script, I can read .dovecot.sieve.log into a sieve variable 'log_content' if this log is not empty. I hope this log will be written before "after" script is called, but will check if it is true.<br>
> Then using sieve "notify" action with mailto:${user_mailaddress}?<wbr>body=${log_content}"<br>
<br>
</span>Did that work?<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
This is my signature. There are many like it, but this one is mine.<br>
<br>
><br>
<br>
</font></span></blockquote></div><br></div>