|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-08-11 23:13 UTC] sniper@php.net
[2004-06-17 02:58 UTC] brh18us at yahoo dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 15:00:01 2025 UTC |
When using this code to delete an IMAP message: <? $objmbox = imap_open("{localhost}", "user", "password", OP_READONLY) || die("Can't connect"); $check = imap_mailboxmsginfo ($objmbox); print "Messages before delete: $check->Nmsgs<br>\n" ; imap_delete ($objmbox, 1); $check = imap_mailboxmsginfo ($objmbox); print "Messages after delete: $check->Nmsgs<br>\n" ; imap_expunge ($objmbox); $check = imap_mailboxmsginfo ($objmbox); print "Messages after expunge: $check->Nmsgs<br>\n" ; imap_close ($objmbox); ?> I get: Messages before delete: 370 Messages after delete: 370 Messages after expunge: 370 This leads me to believe that the delete function or the expunge function is not working. I also tried using "{localhost}INBOX" to connect and that didn't work either. This is how I compiled php: ./configure --with-mysql --enable-track-vars --enable-trans-sid --with-apxs=/usr/local/apache/bin/apxs --with-ftp --with-imap I am using IMAP-4.7c. compiled with the default ./configure OS is FreeBSD 4.1-RELEASE schu