ID: 15238
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: IMAP related
Operating System: RedHat Linux 7.2
PHP Version: 4.0.6
New Comment:

It seems that the problem is in:
php_imap.c line 3446 in the PHP_FUNCTION(imap_search).

Here is a call for mail_criteria() that does no support IMAP4 search
queries. mail_criteria() only support IMAP2 queries and SENTSINCE and
SENTBEFORE are only IMAP4 keywords.

I'm looking at washington.edu/imap for an example on how to use search
in IMAP4.

Anyone know something about this?

Thanks



Previous Comments:
------------------------------------------------------------------------

[2002-01-26 21:01:17] [EMAIL PROTECTED]

The funcion imap_search() return false if you use the keyword SENTSINCE
or SENTBEFORE.

Example:
- this return false
imap_search($mbox, 'SENTSINCE 01-Jan-2001');
- this works
imap_search($mbox, 'SINCE 01-Jan-2001');

The keyword is supported by wu-imapd 2000c.
I try doing a 'telnet localhost imap' and entered the commands manually
and the keyword works.
Also Netscape 6.2.1 us SENTSINCE and SENTBEFORE instead
of SINCE and BEFORE.

I tested this in RedHat 7.1 and 7.2 with PHP 4.0.4pl1 and PHP 4.0.6

Also, if you use the SENTSINCE keyword, nothig is sended to the imap
server. I use tcpdump to debug. Only if you use SINCE, the query is
sended to the imap server.

Chech RFC 2060 Section 6.4.4. :
http://www.isi.edu/in-notes/rfc2060.txt


------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=15238&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to