global: start relying on str_free(NULL) being a no-op Cleanup performed with the following semantic patch: @@ expression E; @@ - if (E != NULL) { - str_free(&E); - } + str_free(&E);
Updated copyright notices to include the year 2018.
global: Fix spelling mistakes in comments Original work by @andreasschulze and @jsoref
global: start relying on pool_unref(NULL) being a no-op Cleanup performed with the following semantic patch: @@ expression E; @@ - if (E != NULL) { - pool_unref(&E); - } + pool_unref(&E);
lib-storage: index: Made MIME FILENAME search criterion match case-insensitively.
Partially implemented IMAP SEARCH=X-MIMEPART capability. This capability is currently Dovecot-specific.