Cross Reference: cmd-unselect.c
xref
: /
javamail
/
javadoc
/
pom.xml
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
/* Copyright (c) 2002-2018 Dovecot authors, see the included COPYING file */
#
include
"
imap-common.h
"
#
include
"
imap-commands.h
"
bool
cmd_unselect
(
struct
client_command_context
*
cmd
)
{
struct
client
*
client
=
cmd
->
client
;
if
(!
client_verify_open_mailbox
(
cmd
))
return
TRUE
;
i_assert
(
client
->
mailbox_change_lock
==
NULL
);
imap_client_close_mailbox
(
client
);
client_send_tagline
(
cmd
,
"OK Unselect completed."
);
return
TRUE
;
}