Displaying 1 result from an estimated 1 matches for "kw_list".
2008 Feb 13
1
How to log uid and keywords of delivered mail?
...struct mail *dest_mail)
{
    struct mail_log_mailbox *lbox = MAIL_LOG_CONTEXT(ctx->transaction->box);
    int ret;
    ret = lbox->super.save_finish(ctx, dest_mail);
    if (ret < 0) {
        return ret;
    }
    
    if (dest_mail != NULL) {
        const char *const *kw_list;
        i_info("dest mail seq: %u, uid: %u", dest_mail->seq, dest_mail->uid);
        kw_list = mail_get_keywords(dest_mail);
        i_info("dest mail kw: %s", kw_list ? t_strarray_join(kw_list, ",") : "NONE");
    }
    return ret;
}
Some mail data...