Updated php-mime-mail-parser library to 5.0 to fix webui html preview

Preview versions of php-mime-mail-parser uses iconv for the most cases and iconv isn't properly supported in alpine php
This commit is contained in:
Howaner
2019-04-28 20:22:37 +02:00
parent 60fd955def
commit 4bac1da451
10 changed files with 331 additions and 153 deletions

View File

@@ -135,7 +135,7 @@ function mailparse_msg_create()
* @param resource $mimemail A valid MIME resource allocated by
* mailparse_msg_create or mailparse_msg_parse_file
*
* @return bool
* @return boolean|null
*/
function mailparse_msg_free($mimemail)
{
@@ -149,7 +149,7 @@ function mailparse_msg_free($mimemail)
* @param resource $mimemail A valid MIME resource
* @param string $data
*
* @return bool
* @return boolean|null
*/
function mailparse_msg_parse($mimemail, $data)
{
@@ -199,7 +199,7 @@ function mailparse_determine_best_xfer_encoding($fp)
* @param string $encoding One of the character encodings supported by the mbstring
* module
*
* @return bool
* @return boolean|null
*/
function mailparse_stream_encode($sourcefp, $destfp, $encoding)
{