Displaying 2 results from an estimated 2 matches for "quota_mail_storage_cr".
2006 Jul 23
0
Bug or not ?
...gin.so
(gdb) bt full
#0 0x40158dd4 in quota_root_init () from
/usr/lib/dovecot/modules/imap/lib01_quota_plugin.so
No symbol table info available.
#1 0x4015908b in quota_add_user_storage () from
/usr/lib/dovecot/modules/imap/lib01_quota_plugin.so
No symbol table info available.
#2 0x4015d2d4 in quota_mail_storage_created () from
/usr/lib/dovecot/modules/imap/lib01_quota_plugin.so
No symbol table info available.
#3 0x0806383b in main ()
No symbol table info available.
(gdb) bt full
#0 0x40158dd4 in quota_root_init () from
/usr/lib/dovecot/modules/imap/lib01_quota_plugin.so
No symbol table info available.
#1...
2010 Feb 19
2
quota and lazy_expunge plugins both used: quotas go wrong with lazy_expunge'd mails
...ted are called _before_
callback functions in hook_mail_storage_create.
- This observation led me to move the piece of code that sets
NAMESPACE_FLAG_NOQUOTA from lazy_expunge_mail_storage_init() to
lazy_expunge_mail_storage_created().
- But there, lazy_expunge_mail_storage_created() is called after
quota_mail_storage_created() because names of the library files are
lib10_quota_plugin.so and lib02_lazy_expunge_plugin.so.
- There I have also learnt that callback functions of the same list are
called in the reverse order compared to the library filenames.
So see if my observations were right, I have renamed lib10_qu...