Searched defs:saving (Results 1 - 7 of 7) sorted by relevance
/dovecot/src/lib-storage/ |
H A D | fail-mail.c | 33 static void fail_mail_set_seq(struct mail *mail, uint32_t seq, bool saving) argument 37 mail->saving = saving;
|
H A D | mail-storage.h | 39 /* Only saving/copying mails to mailbox works. */ 50 /* Enable if mailbox is used for saving a mail delivery using MDA. 190 /* Always assign UIDs to messages when saving/copying. Normally this 206 instead of saving a new mail. This requires mailbox to be opened 399 bool saving:1; /* This mail is still being saved */ member in struct:mail 733 /* A simplified API for searching and saving the result. */ 766 /* Initialize saving a new mail. You must not try to save more than one mail 808 /* Begin saving the message. All mail_save_set_*() calls must have been called
|
H A D | mail-storage-private.h | 309 /* Called during transaction commit/rollback if saving was done */ 471 void (*set_seq)(struct mail *mail, uint32_t seq, bool saving); 695 /* mail was copied or moved using saving (requires: 700 bool saving:1; member in struct:mail_save_context 702 copying_or_moving==TRUE && saving==FALSE). */ 705 mailbox_save_using_mail() and then saving==TRUE. */
|
/dovecot/src/lib-storage/index/mbox/ |
H A D | mbox-mail.c | 388 static void mbox_mail_set_seq(struct mail *_mail, uint32_t seq, bool saving) argument 392 index_mail_set_seq(_mail, seq, saving);
|
/dovecot/src/lib-storage/index/imapc/ |
H A D | imapc-mail.c | 405 static void imapc_mail_set_seq(struct mail *_mail, uint32_t seq, bool saving) argument 410 index_mail_set_seq(_mail, seq, saving); 414 if (!mail->search_mail && !_mail->saving)
|
/dovecot/src/plugins/virtual/ |
H A D | virtual-mail.c | 185 static void virtual_mail_set_seq(struct mail *mail, uint32_t seq, bool saving) argument 191 i_assert(!saving);
|
/dovecot/src/lib-storage/index/ |
H A D | index-mail.c | 204 if (_mail->saving) { 943 dates[1] = mail->mail.mail.saving ? ioloop_time : 1687 mail->mail.mail.saving = FALSE; 1711 /* If uid == 0 but seq != 0, we came here from saving a (non-mbox) 1903 if (!_mail->saving && _mail->uid < hdr->next_uid) { 1912 void index_mail_set_seq(struct mail *_mail, uint32_t seq, bool saving) argument 1917 if (!saving) 1919 /* we started saving a mail, aborted it, and now we're saving 1928 mail->mail.mail.saving [all...] |
Completed in 23 milliseconds