Increase the size of the temp buffer for starttls. Some SMTP servers send larger messages.

pull/4467/head
David Garske 2021-10-12 15:13:38 -07:00
parent f20f883e94
commit bc97539756
1 changed files with 1 additions and 1 deletions

View File

@ -895,7 +895,7 @@ const char* starttlsCmd[6] = {
/* Initiates the STARTTLS command sequence over TCP */
static int StartTLS_Init(SOCKET_T* sockfd)
{
char tmpBuf[256];
char tmpBuf[512];
if (sockfd == NULL)
return BAD_FUNC_ARG;