From f7548d6d28c313cf80e6f3ef89aed16a19815df1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:51:24 +0200 Subject: Adding upstream version 1:2.3.19.1+dfsg1. Signed-off-by: Daniel Baumann --- src/imap/cmd-x-cancel.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/imap/cmd-x-cancel.c (limited to 'src/imap/cmd-x-cancel.c') diff --git a/src/imap/cmd-x-cancel.c b/src/imap/cmd-x-cancel.c new file mode 100644 index 0000000..3f49451 --- /dev/null +++ b/src/imap/cmd-x-cancel.c @@ -0,0 +1,28 @@ +/* Copyright (c) 2006-2018 Dovecot authors, see the included COPYING file */ + +#include "imap-common.h" +#include "imap-commands.h" + +bool cmd_x_cancel(struct client_command_context *cmd) +{ + struct client_command_context *cancel_cmd; + const char *tag; + + /* */ + if (!client_read_string_args(cmd, 1, &tag)) + return FALSE; + + cancel_cmd = cmd->client->command_queue; + for (; cancel_cmd != NULL; cancel_cmd = cancel_cmd->next) { + if (cancel_cmd->tag != NULL && cancel_cmd != cmd && + strcmp(cancel_cmd->tag, tag) == 0) { + client_command_cancel(&cancel_cmd); + client_send_tagline(cmd, "OK Command cancelled."); + return TRUE; + } + } + + client_send_tagline(cmd, "NO Command tag not found."); + return TRUE; +} + -- cgit v1.2.3