|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-11-29 08:18 UTC] michael at bested dot net
[2002-11-29 08:39 UTC] sniper@php.net
[2002-11-29 08:40 UTC] sniper@php.net
[2002-11-30 05:45 UTC] michael at bested dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 21:00:01 2025 UTC |
First, I try to connect to my mail server with POP3 and read a mail: $Con = imap_open("{localhost:110/pop3}", "user", "pass"); print imap_body ($Con, "1", FT_UID); No problem! Then I try: $Con = imap_open("{localhost:143}", "user", "pass"); print imap_body ($Con, "1", FT_UID); then the script return: no body information available. I have no problems reading the header information or using imap_fetch_overview(); Can it be a bug?