aboutsummaryrefslogtreecommitdiff
path: root/worker/types
diff options
context:
space:
mode:
Diffstat (limited to 'worker/types')
-rw-r--r--worker/types/messages.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/worker/types/messages.go b/worker/types/messages.go
index 3f1a39f..ff2c36b 100644
--- a/worker/types/messages.go
+++ b/worker/types/messages.go
@@ -86,6 +86,11 @@ type FetchMessageBodies struct {
Uids imap.SeqSet
}
+type DeleteMessages struct {
+ Message
+ Uids imap.SeqSet
+}
+
// Messages
type CertificateApprovalRequest struct {
@@ -122,3 +127,8 @@ type MessageInfo struct {
Size uint32
Uid uint32
}
+
+type MessagesDeleted struct {
+ Message
+ Uids []uint32
+}