1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/* Copyright (c) 2003-2018 Dovecot authors, see the included COPYING file */
#include "imap-common.h"
#include "mail-storage.h"
#include "mail-search-build.h"
#include "imap-search-args.h"
#include "imap-expunge.h"
#define IMAP_EXPUNGE_BATCH_SIZE 1000
/* get a seqset of all the mails with \Deleted */
static int imap_expunge_get_seqset(struct mailbox *box,
struct mail_search_arg *next_search_arg,
ARRAY_TYPE(seq_range) *seqset)
{
struct mailbox_transaction_context *t;
struct mail_search_args *search_args;
struct mail_search_context *ctx;
struct mail *mail;
int ret;
search_args = mail_search_build_init();
search_args->args = p_new(search_args->pool, struct mail_search_arg, 1);
search_args->args->type = SEARCH_FLAGS;
search_args->args->value.flags = MAIL_DELETED;
search_args->args->next = next_search_arg;
/* Refresh the flags so we'll expunge all messages marked as \Deleted
by any session. */
t = mailbox_transaction_begin(box, MAILBOX_TRANSACTION_FLAG_REFRESH,
"EXPUNGE");
ctx = mailbox_search_init(t, search_args, NULL, 0, NULL);
/* collect the seqs into a seqset */
while (mailbox_search_next(ctx, &mail))
seq_range_array_add(seqset, mail->seq);
ret = mailbox_search_deinit(&ctx);
/* commit in case a plugin made changes - failures should not abort the expunge */
(void) mailbox_transaction_commit(&t);
mail_search_args_unref(&search_args);
if (ret < 0)
array_free(seqset);
return ret;
}
int imap_expunge(struct mailbox *box, struct mail_search_arg *next_search_arg,
unsigned int *expunged_count)
{
struct imap_search_seqset_iter *seqset_iter;
struct mail_search_args *search_args;
struct mailbox_status status;
bool expunges = FALSE;
int ret;
if (mailbox_is_readonly(box)) {
/* silently ignore */
return 0;
}
mailbox_get_open_status(box, STATUS_MESSAGES, &status);
search_args = mail_search_build_init();
search_args->args = p_new(search_args->pool, struct mail_search_arg, 1);
search_args->args->type = SEARCH_SEQSET;
p_array_init(&search_args->args->value.seqset, search_args->pool, 16);
if (imap_expunge_get_seqset(box, next_search_arg,
&search_args->args->value.seqset) < 0) {
mail_search_args_unref(&search_args);
return -1;
}
seqset_iter = imap_search_seqset_iter_init(search_args, status.messages,
IMAP_EXPUNGE_BATCH_SIZE);
do {
struct mailbox_transaction_context *t;
struct mail_search_context *ctx;
struct mail *mail;
t = mailbox_transaction_begin(box, 0, "EXPUNGE");
ctx = mailbox_search_init(t, search_args, NULL, 0, NULL);
while (mailbox_search_next(ctx, &mail)) {
*expunged_count += 1;
mail_expunge(mail);
expunges = TRUE;
}
ret = mailbox_search_deinit(&ctx);
if (ret < 0) {
mailbox_transaction_rollback(&t);
break;
} else {
ret = mailbox_transaction_commit(&t);
if (ret < 0)
break;
}
} while (imap_search_seqset_iter_next(seqset_iter));
imap_search_seqset_iter_deinit(&seqset_iter);
mail_search_args_unref(&search_args);
if (ret < 0)
return ret;
return expunges ? 1 : 0;
}
|