summaryrefslogtreecommitdiffstats
path: root/pigeonhole/src/managesieve/cmd-deletescript.c
blob: a8be5c93b9776ce2b6060213c14e89b8cf54b886 (plain)
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
/* Copyright (c) 2002-2018 Pigeonhole authors, see the included COPYING file
 */

#include "lib.h"

#include "sieve.h"
#include "sieve-script.h"
#include "sieve-storage.h"

#include "managesieve-common.h"
#include "managesieve-commands.h"

bool cmd_deletescript(struct client_command_context *cmd)
{
	struct client *client = cmd->client;
	struct sieve_storage *storage = client->storage;
	const char *scriptname;
	struct sieve_script *script;

	/* <script name>*/
	if (!client_read_string_args(cmd, TRUE, 1, &scriptname))
		return FALSE;

	event_add_str(cmd->event, "script_name", scriptname);

	script = sieve_storage_open_script(storage, scriptname, NULL);
	if (script == NULL || sieve_script_delete(script, FALSE) < 0) {
		client_command_storage_error(
			cmd, "Failed to delete script `%s'", scriptname);
		sieve_script_unref(&script);
		return TRUE;
	}

	struct event_passthrough *e =
		client_command_create_finish_event(cmd);
	e_debug(e->event(), "Deleted script `%s'", scriptname);

	client->deleted_count++;
	client_send_ok(client, "Deletescript completed.");

	sieve_script_unref(&script);
	return TRUE;
}