|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-02-07 17:29 UTC] chagenbu@php.net
[2001-02-07 17:40 UTC] tlb at rapanden dot dk
[2001-02-07 17:47 UTC] avsm@php.net
[2001-02-11 18:28 UTC] avsm@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 14:00:01 2025 UTC |
This works: $mbox = imap_open ("{rapanden.dk:143}", "$login", "$passwd", OP_HALFOPEN); $status = imap_status($mbox,"{rapanden.dk:143}INBOX",SA_MESSAGES); and this dos'nt: $mbox = imap_open ("{localhost:143}", "$login", "$passwd", OP_HALFOPEN); $status = imap_status($mbox,"{localhost:143}INBOX",SA_MESSAGES); The problem is that imap_status will only accept the machine name, even if I use mail.rapanden.dk that points to the same ip as rapanden.dk it won't work. I found another description of the problem here: http://faqchest.dynhost.com/prgm/imp-l/imp-00/imp-0012/imp-001206/imp00121423_34248.html Troels Liebe Bentsen