<div dir="ltr"><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Em seg., 22 de nov. de 2021 às 20:29, Timo Sirainen <<a href="mailto:timo@sirainen.com">timo@sirainen.com</a>> escreveu:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow-wrap: break-word;">Hi,</div></blockquote><div><br></div><div>Hi,</div><div><br></div><div>I've answered the pull request on github also. </div><div> <br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow-wrap: break-word;"><div></div><div>Pigeonhole shouldn't need to know anything about this being a virtual mailbox specifically. If I understand right, the problem is that imapsieve doesn't like it when the destination folder doesn't know what the IMAP UID number is for the saved/copied mail. Earlier versions assert-crash, while a newer code just ignores this situation and doesn't execute the script. I think your patch works by returning the real folder's UID, not the virtual folder's UID. But imapsieve is still working on the virtual folder, so the UID likely points to a wrong message. <br></div></div></blockquote><div><br></div><div>The changes I made allows imapsieve to detect it is working with a virtual folder and then gets the real UID of the message on the real folder it is stored allowing to run the script. The imapsieve script will see the real folder name and the contents of the right message. This obviously only works if the virtual folder have a real folder fallback for saving.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow-wrap: break-word;"><div><div>Fixing this is rather difficult. It can't even be fixed in all situations. For example what happens if you have Virtual/Flagged folder that only has mails that have the \Flagged flag, and you copy a mail there without the flag? It gets saved to the real folder, but it won't show up in the Virtual/Flagged folder itself until later when it gets a \Flagged flag. What happens when you copy/save some mails that have the \Flagged flag and some that don't? Only some of the mails will end up in the virtual folder. Neither IMAP nor the current lib-storage API allows filling saved_uids only partially.</div></div></div></blockquote><div><br class="gmail-Apple-interchange-newline">Note that APPEND and COPY/MOVE into a virtual mailbox that doesn't have a real mailbox fallback will never work, so, a virtual mailbox that only shows flagged messages cannot have a fallback folder, so, the answer for your question is: nothing... message will not be saved, and the imapsieve script will not run.<br></div><div>  </div><div><p dir="auto" style="box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36,41,47);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";font-size:14px">My patch fixed the behavior when APPEND and COPY reasons are triggered on a virtual mailbox that has a real mailbox fallback for saving (configured through the ! operator on the virtual mailbox definition)</p><p dir="auto" style="box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36,41,47);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";font-size:14px">When FLAGGING a message stored on a virtual mailbox, the imapsieve script is not running, this is because my patch isn't triggered in this situation.</p></div><div>Anyway I think it can be fixed the same way: execute the imapsieve passing the real message on the real mailbox... I may try to look at this, but I wasn't interested in FLAG action.<br></div><div><br></div><div>(I've made this tests with my patch applied on dovecot 2.3.13 on Debian Bullseye)<br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow-wrap: break-word;"><div>It could be a possibility to fix this for the specific situations when the saved mails are guaranteed to end up in the virtual folder. Detecting whether this is true could be a bit tricky in itself, although it could work for most cases by just supporting it when the virtual search query is "all". The next step would be to make the virtual transaction actually save the mails directly to the virtual indexes instead of going through the generic "virtual sync" code. Although I'm not sure how it would handle a situation when the real folder already had some new mails that weren't yet in the virtual index. The syncing might be smart enough to add those mails later, I'm not sure.</div><div><br></div><div>A completely different way of solving it might be to never actually save mails to a virtual folder directly. So e.g. when saving to Virtual/All the folder would be early on converted to INBOX, so imapsieve code would be thinking that the mail is being saved to INBOX. Maybe something like:</div><div> - virtual_mailbox_alloc() checks if MAILBOX_FLAG_SAVEONLY is used. If yes, return the real mailbox instead of the virtual mailbox.</div><div> - But this could cause much confusion for callers that don't expect it. So probably require also a new flag MAILBOX_FLAG_BACKEND_SAVEONLY.</div><div> - Change the important places to support MAILBOX_FLAG_BACKEND_SAVEONLY properly. At least with IMAP when this is used and the mailbox isn't the expected mailbox, it shouldn't return [COPYUID] or [APPENDUID] response codes to COPY/APPEND commands since the returned UIDs would be for the real mailbox rather than the virtual mailbox.</div><div> - It's also possible that this behavior would break some plugins..</div></div></blockquote><div><br></div><div>I really don't understand dovecot code very well, I only studied the code in order to implement this feature. Hope you guys will put it in a good way on the code and I will be able to stop using this quick and dirty solution I made!</div><div><br></div><div>Best regards,</div><div>Claudemir</div><div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow-wrap: break-word;"><div><br></div><div><blockquote type="cite"><div>On 20. Nov 2021, at 14.02, Claudemir Todo Bom <<a href="mailto:claudemir@todobom.com" target="_blank">claudemir@todobom.com</a>> wrote:</div><br><div><div dir="ltr"><div dir="ltr">Hi,<div><br></div><div>after some time learning some parts of the code of dovecot/pigeohole, I made a Proof of Concept that it is possible to execute imapsieve scripts when moving messages to virtual mailboxes, made it a pull request  on the pigeonhole github project:</div><div><br></div><div><a href="https://github.com/dovecot/pigeonhole/pull/10" target="_blank">https://github.com/dovecot/pigeonhole/pull/10</a><br></div><div><br></div><div>I would like that somebody take a look at this changes and make them in a propper way into the main code of pigeonhole and dovecot.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Em seg., 15 de nov. de 2021 às 11:55, Claudemir Todo Bom <<a href="mailto:claudemir@todobom.com" target="_blank">claudemir@todobom.com</a>> escreveu:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi folks, and <a class="gmail_plusreply" id="gmail-m_2485080838265162959gmail-m_3086371868575563796plusReplyChip-1">@stephanbosch</a><div><br></div><div>trying to debug the code, even knowing nothing about it, I discovered that @stephanbosch (cc him on this message) fixed the panic error I described in my original message on commit #27ab897f in the pigeonhole project.</div><div><br></div><div>In this change he only avoided running into the bug if UID of the message could not be determined, which is the case when the target mailbox of a copy or move operation is a virtualbox with a fallback real mailbox. This way the imapsieve is unusable when moving to a virtual mailbox, since what I'm trying to do is a virtualbox for Junk and some others, all with real mailboxes fallbacks and trying to activate the spamassassin learning on this movement, I need to detect when a message is being moved from a junk folder to any other folder and vice-versa.</div><div><br></div><div>Can anybody help me on making imapsieve to work when dropping messages into virtual mailbox that have a real mailbox fallback?</div><div><br></div><div>Best regards,</div><div>Claudemir</div><div><br></div></div>
</blockquote></div></div>
</div></blockquote></div><br></div></blockquote></div></div>