]> granicus.if.org Git - php/commitdiff
- This is not supposed to be used, from c-client docs (formats.txt):
authorfoobar <sniper@php.net>
Mon, 6 Aug 2001 16:36:31 +0000 (16:36 +0000)
committerfoobar <sniper@php.net>
Mon, 6 Aug 2001 16:36:31 +0000 (16:36 +0000)
#"The following file/message formats are supported by c-client as of
# the time of this writing:
#
#. mx    This is an experimental format, and may be removed in a future
#        release.  An mx format mailbox has a .mxindex file which holds
#        the message status and unique identifiers.  Messages are
#        stored in Internet standard CF LF form, so the file size of
#        the message file equals the size of the message.
#
#        mx is somewhat inefficient; the entire directory must be read
#        and each file stat()'d.  We found it intolerable for a
#        moderate sized mailbox (2000 messages) and have more or less
#        abandoned it."

ext/imap/php_imap.c

index b99d6d58d574fc3150fbbf144b67e05cacb12fe3..51cbbc51904fd5da5f974ada356db54bbb666256 100644 (file)
@@ -436,7 +436,7 @@ PHP_MINIT_FUNCTION(imap)
 #ifndef PHP_WIN32
        mail_link(&unixdriver);         /* link in the unix driver */
        mail_link(&mhdriver);           /* link in the mh driver */
-       mail_link(&mxdriver);           /* link in the mx driver */
+    /* mail_link(&mxdriver); */        /* According to c-client docs (internal.txt) this shouldn't be used. */
        mail_link(&mmdfdriver);         /* link in the mmdf driver */
        mail_link(&newsdriver);         /* link in the news driver */
        mail_link(&philedriver);        /* link in the phile driver */