/* Copyright (c) 2013-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "smtp-server-private.h"
/* QUIT command */
const char *params)
{
int ret;
/* "QUIT" CRLF */
if (*params != '\0') {
501, "5.5.4", "Invalid parameters");
return;
}
/* specific implementation of QUIT command */
/* command is waiting for external event or it failed */
return;
}
}
if (!smtp_server_command_is_replied(command)) {
/* set generic QUIT success reply if none is provided */
}
}