File: cmd-renamescript.c

package info (click to toggle)
dovecot 1%3A1.2.15-7
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 30,252 kB
  • ctags: 19,837
  • sloc: ansic: 191,438; sh: 21,091; makefile: 3,330; cpp: 526; perl: 108; xml: 44
file content (44 lines) | stat: -rw-r--r-- 1,008 bytes parent folder | download | duplicates (2)
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
/* Copyright (c) 2002-2010 Dovecot Sieve authors, see the included COPYING file
 */

#include "common.h"
#include "str.h"

#include "commands.h"

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

#include <stdlib.h>

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

	/* <oldname> <newname> */
	if (!client_read_string_args(cmd, 2, &scriptname, &newname))
		return FALSE;

	exists = TRUE;
	script = sieve_storage_script_init(storage, scriptname, &exists);

	if (script == NULL) {
		if (!exists)
			client_send_noresp(client, "NONEXISTENT", "Script does not exist.");
		else
			client_send_storage_error(client, storage);

		return TRUE;
	}

	if (sieve_storage_script_rename(script, newname) < 0)
		client_send_storage_error(client, storage);
	else
		client_send_ok(client, "Renamescript completed.");

	return TRUE;
}