1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-04 15:57:45 +02:00

Increased the length of return codes allowed from smtp server to 256..

git-svn-id: file:///svn/phpbb/trunk@2030 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
the_systech
2002-01-31 21:16:12 +00:00
parent 5d304a8618
commit 0b912384b6

View File

@@ -36,7 +36,7 @@
define('SMTP_INCLUDED', 1);
function server_parse($socket, $response)
{
if(!($server_response = fgets($socket, 100)))
if(!($server_response = fgets($socket, 256)))
{
message_die(GENERAL_ERROR, "Couldn't get mail server response codes", "", __LINE__, __FILE__);
}