[mailstream] Support new img format with alt text #896

Merged
mexon merged 2 commits from mat/mailstream-new-img-format into develop 2019-09-30 00:32:14 +02:00
Showing only changes of commit 801b88a982 - Show all commits

View file

@ -166,6 +166,9 @@ function mailstream_do_images($a, &$item, &$attachments) {
preg_match_all("/\[img\=([^\]]*)\]([^[]*)\[\/img\]/ism", $item["body"], $matches3);
foreach (array_merge($matches1[3], $matches2[1], $matches3[1]) as $url) {
$components = parse_url($url);
if (!$components) {
continue;
}
$cookiejar = tempnam(get_temppath(), 'cookiejar-mailstream-');
$curlResult = Network::fetchUrlFull($url, true, 0, '', $cookiejar);
$attachments[$url] = [