From: fidian Date: Thu, 8 Mar 2001 17:28:52 +0000 (+0000) Subject: * Added the _ to further ensure that the bounary string can't be made X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ed865adf3347e83235945ff67e7783db44d63dff;p=squirrelmail.git * Added the _ to further ensure that the bounary string can't be made by accident in a MIME-encoded file. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1179 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/functions/smtp.php b/functions/smtp.php index 9d7bce9e..55c923e2 100644 --- a/functions/smtp.php +++ b/functions/smtp.php @@ -115,7 +115,7 @@ static $mimeBoundaryString; if ($mimeBoundaryString == "") { - $mimeBoundaryString = "----=" . + $mimeBoundaryString = "----=_" . GenerateRandomString(60, '\'()+,-./:=?_', 7); }