Roland Liebl - 2007-01-16 21:07:06
#1-
Greate work !!!
#2-
7 bit / 8 bit decoding fails if there is source file contains "7 bit" instead of "7bit" ... same with 8 bit.
This one is easily fixed by modifying ...
case 'content-transfer-encoding:':
switch($this->headers['Encoding']=str_replace(" ","",strtolower(trim($part['Value']))))
to
case 'content-transfer-encoding:':
switch($this->headers['Encoding']=trim($part['Value'])
#3-
Header Field Value "From" and "To" is not returned for the following header:
From: <mailer-daemon@roland-liebl.de>
To: <roland@roland-liebl.de>
If I edit the source file and add manually quotation marks it works:
From: <"mailer-daemon@roland-liebl.de">
To: <"roland@roland-liebl.de">
I can't find where to fix it!
Thanks,
Roland