php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13465 imap_fetchstructure problem
Submitted: 2001-09-26 22:05 UTC Modified: 2001-10-19 02:42 UTC
From: seung_hwan at hotmail dot com Assigned:
Status: Not a bug Package: IMAP related
PHP Version: 4.0.6 OS: Red Hat 7.1 (Seawolf)
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
33 - 30 = ?
Subscribe to this entry?

 
 [2001-09-26 22:05 UTC] seung_hwan at hotmail dot com
The list of modules I compiled PHP with:
./configure --with-apxs=/usr/local/apache/bin/apxs \
            --with-mysql=/usr/local/mysql \
            --with-imap=/usr/local/imap \
            --with-language=korean \
            --with-charset=euc_kr \
            --with-zlib \
            --enable-track-vars \
            --disbale-debug \
            --enable-modules=so \
            --with-config-file-path=/usr/local/apache/conf \

My server environments:
   OS     - Red Hat 7.1
   PHP    - 4.0.6
   qmail  - 1.03
   imap   - 4.7
   apache - 1.3.20
   mysql  - 3.23.39

If a mail header contains 'Mime-Version: 1.0', imap_fetchstructure works ok.
However If not, imap_fetchstructure always returns the type value as text and the subtype value as plain.

For example, suppose I receive the following mail.

x-sender: anonymous@myonair.com
x-receiver: ksh@tkdz.com
Received: from myonair.com by gaultier with Microsoft SMTPSVC(5.0.2172.1);
	 Tue, 25 Sep 2001 11:34:08 +0900
Received: (qmail 31008 invoked by uid 99); 25 Sep 2001 11:39:49 +0900(KST)
Date: 25 Sep 2001 11:39:49 +0900(KST)
Message-ID: <20010925113949.31007.qmail@myonair.com>
To: ksh@tkdz.com
Subject: test
From: admin@myonair.com
Content-Type: text/html; charset=ks_c_5601-1987
Return-Path: anonymous@myonair.com
X-OriginalArrivalTime: 25 Sep 2001 02:34:08.0868 (UTC) FILETIME=[8DAA4240:01C1456A]


<iframe frameborder="0" scrolling="no" topmargin="0" leftmargin="0" src="http://mail.myonair.com/letter/mail_to.html?user_no=2" width="620" height="450"></iframe>

The mail content type is text/html, but imap_fetchstructure returns the content type as text/plain because there is not 'Mime-Version: 1.0' in the mail header.
If the mail header contains 'Mime-Version: 1.0', imap_fetchstructure works properly.

Is this a kind of bug?

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-10-19 00:00 UTC] seung_hwan at hotmail dot com
Nobody knows how to solve this problem???
 [2001-10-19 02:42 UTC] derick@php.net
If it is a bug (which I doubt), it's not a PHP bug, but a bug in the library that the imap extension used. I recommend to check this out with the imap guys.

Not a PHP bug > bogus.
 [2003-01-22 08:30 UTC] tm at bogs dot de
I've found the following explanation for this problem
(although many mail clients interpret the content as html, imap do not so, but it seems to be an error on side of the sender not of the receiver):

"[...]
Once again, let me emphasize that "Content-Type: text/html" without the
mandatory MIME-Version header is garbage.  It violates both MIME and the older
format."

See also:
- http://www.faqchest.com/prgm/wuimap-l/imap-01/imap-0110/imap-011002/imap01103110_15803.html
- http://www.faqchest.com/prgm/wuimap-l/imap-01/imap-0110/imap-011002/imap01103111_18907.html
- http://www.faqchest.com/prgm/wuimap-l/imap-01/imap-0110/imap-011002/imap01103001_02507.html
 [2004-06-07 18:08 UTC] se at designlinks dot net
OK - so how do we get in touch with the IMAP guys to correct this 'issue'?

I agree that the fault lies squarely on the shoulders of the sender for not adding the mandatory MIME-version header, but surely imap_fetchstructure can deal with the missing header.

Eh - what if we just inject the mandatory field into the header before calls to this function (whether or not the field is already there?)
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 08:01:28 2024 UTC