|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-04-12 17:27 UTC] derick@php.net
[2004-04-12 18:03 UTC] br at creativedigitalcolor dot com
[2004-04-12 20:10 UTC] sniper@php.net
[2004-04-12 21:06 UTC] br at creativedigitalcolor dot com
[2004-04-12 22:53 UTC] sniper@php.net
[2004-09-17 16:24 UTC] vrana@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 10:00:01 2025 UTC |
Description: ------------ quoted_printable_decode() does not handle lines starting with "..". smtp appends a period to the beginning of a new line for lines already starting with a period. (per rfc2821, this is to distinguish between the single period used for marking the end of a message). This is reproducable every time. I also saw the function make a ".." in the middle of a line as "." where what was really wanted was "..". <?php /* here is my temporary fix, but also further explains the problem */ /* 1. Replace all of the \n\.\. with \r\. */ $part = preg_replace('/(\n)\.\./is','$1.',$part); /* 2. Replace all of the .. with =2E. */ $part = preg_replace('/\.\./is','=2E.',$part); /* 3. Decode print quotable */ $part = quoted_printable_decode($part); echo $part ; ?> Reproduce code: --------------- G=8D=C2r+?yo7*=C0=C0=99=D2=B4HT=D1=E2}=AA=FE[=E0=D2=E0J=B5$o=DA=8F>=9B..= o=B5d=F6u,=F27=AA6VN=0FM=9F=03=3Dj=3DU=FBl=CF=1A=A1|ok=B3G=AD=B0Y=CF(=D4= =AC=B4=B0^a=1B&_=D3=AA=3DD=F4s=B8H=AD=D7=97q=E8=08=D4=EBi=14G#=85=83=C5=81= ..=FD~=0E=12i=D4=1A=8C=EA=F5=FD=1C,Q=BB=E87=D3=D6=DE=C9=C2^=DC=D2=0D=F1=DD= $part = quoted_printable_decode($part); Expected result: ---------------- <PRE>G?r+?yo7*??ҴHT??}?[???J?$o?>..o?d?u,?7?6VNM= j=U?l??|okG?Y?(Ԭ??^a&_Ӫ= D?s?Hq???iG#?.~i???,Q??7????^?? ?</PRE> Actual result: -------------- <PRE>G?r+?yo7*??ҴHT??}?[???J?$o?>..o?d?u,?7?6VNM= j=U?l??|okG?Y?(Ԭ??^a&_Ӫ= D?s?Hq???iG#?..~i???,Q??7????^?? ?</PRE>