From bfebbda2592b1f84a3f9a1c982648c160bbb2229 Mon Sep 17 00:00:00 2001 From: stekkel Date: Mon, 12 May 2003 09:18:38 +0000 Subject: [PATCH] added Conbtent-Transfer-Encoding to rfc822 header git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4864 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- class/deliver/Deliver.class.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/class/deliver/Deliver.class.php b/class/deliver/Deliver.class.php index a053b025..710f21ed 100644 --- a/class/deliver/Deliver.class.php +++ b/class/deliver/Deliver.class.php @@ -313,6 +313,9 @@ class Deliver { } } $header[] = $contenttype . $rn; + if ($encoding = $rfc822_header->encoding) { + $header[] .= 'Content-Transfer-Encoding: ' . $encoding . $rn; + } if ($rfc822_header->dnt) { $dnt = $rfc822_header->getAddr_s('dnt'); /* Pegasus Mail */ -- 2.25.1