소스 검색

use 8bit content-transfer-encoding header when MDN contains 8bit symbols.
8bit symbols can be present, if interface uses translated strings. Fix for #934033

tokul 21 년 전
부모
커밋
8b9751737c
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/read_body.php

+ 2 - 0
src/read_body.php

@@ -203,6 +203,8 @@ function SendMDN ( $mailbox, $passed_id, $sender, $message, $imapConnection) {
                 $special_encoding = '7bit';
             }
         }
+    } elseif (sq_is8bit($body)) {
+        $special_encoding = '8bit';
     }
     $part1 = new Message();
     $part1->setBody($body);