[dovecot-cvs] dovecot/src/imap cmd-unselect.c,NONE,1.1

cras at procontrol.fi cras at procontrol.fi
Thu Jan 23 21:02:12 EET 2003


Update of /home/cvs/dovecot/src/imap
In directory danu:/tmp/cvs-serv23464

Added Files:
	cmd-unselect.c 
Log Message:
forgot to add



--- NEW FILE: cmd-unselect.c ---
/* Copyright (C) 2002 Timo Sirainen */

#include "common.h"
#include "commands.h"

int cmd_unselect(struct client *client)
{
	if (!client_verify_open_mailbox(client))
		return TRUE;

	if (!client->mailbox->close(client->mailbox))
		client_send_closing_mailbox_error(client);

	client->mailbox = NULL;

	client_send_tagline(client, "OK Unselect completed.");
	return TRUE;
}




More information about the dovecot-cvs mailing list