diff options
Diffstat (limited to 'src/imap/cmd-unsubscribe.c')
-rw-r--r-- | src/imap/cmd-unsubscribe.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/imap/cmd-unsubscribe.c b/src/imap/cmd-unsubscribe.c new file mode 100644 index 0000000..1d23624 --- /dev/null +++ b/src/imap/cmd-unsubscribe.c @@ -0,0 +1,9 @@ +/* Copyright (c) 2002-2018 Dovecot authors, see the included COPYING file */ + +#include "imap-common.h" +#include "imap-commands.h" + +bool cmd_unsubscribe(struct client_command_context *cmd) +{ + return cmd_subscribe_full(cmd, FALSE); +} |