Lines Matching defs:_mail
20 notify_mail_expunge(struct mail *_mail)
22 struct mail_private *mail = (struct mail_private *)_mail;
25 notify_contexts_mail_expunge(_mail);
26 lmail->super.expunge(_mail);
30 notify_mail_update_flags(struct mail *_mail, enum modify_type modify_type,
33 struct mail_private *mail = (struct mail_private *)_mail;
37 old_flags = mail_get_flags(_mail);
38 lmail->super.update_flags(_mail, modify_type, flags);
39 new_flags = mail_get_flags(_mail);
44 notify_contexts_mail_update_flags(_mail, old_flags);
48 notify_mail_update_keywords(struct mail *_mail, enum modify_type modify_type,
51 struct mail_private *mail = (struct mail_private *)_mail;
56 old_keywords = mail_get_keywords(_mail);
57 lmail->super.update_keywords(_mail, modify_type, keywords);
58 new_keywords = mail_get_keywords(_mail);
68 notify_contexts_mail_update_keywords(_mail, old_keywords);
71 static void notify_mail_allocated(struct mail *_mail)
73 struct mail_private *mail = (struct mail_private *)_mail;
77 if ((_mail->transaction->flags & MAILBOX_TRANSACTION_FLAG_NO_NOTIFY) != 0)