Hm, It seems it comes to a recursive loop. The problem is that I
override storage->v.mailbox_open method with my own, but then use
the same method to get the mailbox inside the method and of course the
thing loops as hell. But it's almost the same in Quota plugin, there is
just that qstorage, but also uses super.mailbox_open which is the
current method that is being executed. <br>
<br>
So, how could I get a mailbox? Should I call maildir-storage.mailbox_open? <br>
<br>
Btw, original Quota plugin doesn't work. <br>
dovecot: Jul 23 19:26:07 Error: IMAP(seba):
dlopen(/usr/lib/dovecot/modules/imap_quota.so) failed:
/usr/lib/dovecot/modules/imap_quota.so: undefined symbol:
array_modifyable_idx<br>
<br>
Sebastjan<br><br><div><span class="gmail_quote">On 7/23/05, <b class="gmail_sendername">Sebastjan Trepca</b> <<a href="mailto:trepca@gmail.com">trepca@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Ok, I found out how to use logging. ( Check failures.c, methods i_[level])<br>
<br>
Now i have problem with method that opens mailbox. It looks like this:<br>
<br>
static struct mailbox *quota_mailbox_open(struct mail_storage *storage,
const char *name, struct istream *input, enum mailbox_open_flags flags)<br>
{<br>
    struct mailbox *box;<br>
    box = storage->v.mailbox_open(storage, name, input, flags);<br>
    if (box == NULL)<br>
        return NULL;<br>
    <br>
    box->v.save_finish = quota_save_finish;<br>
    box->v.copy = quota_copy;<br>
    return box;<br>
}<br>
<br>
When I run dovecot and select a mailbox the child that is processing my
connection gets killed. Why? I just override those functions,
everything else is same as original method.<br><span class="sg">
<br>
Sebastjan</span><div><span class="e" id="q_10543e2c620754b5_2"><br><br><div><span class="gmail_quote">On 7/23/05, <b class="gmail_sendername">Sebastjan Trepca</b> <<a href="mailto:trepca@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
trepca@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi,<br>
<br>
I have a few questions regarding copy and save_finish methods. <br>
<br>
How can I get a filename or processing mail from the parameters you get
in that methods? How could I use the logger you use for dovecot inside
my plugin?<br>
<br>
Thanks, Sebastjan<br>

</blockquote></div><br>

</span></div></blockquote></div><br>