summaryrefslogtreecommitdiff
path: root/ext/imap/php_imap.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2001-08-06 16:36:31 +0000
committerfoobar <sniper@php.net>2001-08-06 16:36:31 +0000
commit755723bb3a3b779d80d6b74b810e6376567adf48 (patch)
tree35d77b337897da42dc98e433d4d6cf4457336476 /ext/imap/php_imap.c
parent654b4332c79da7285f8f43e748aef2afbdc47bd6 (diff)
downloadphp-git-755723bb3a3b779d80d6b74b810e6376567adf48.tar.gz
- This is not supposed to be used, from c-client docs (formats.txt):
#"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."
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r--ext/imap/php_imap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c
index b99d6d58d5..51cbbc5190 100644
--- a/ext/imap/php_imap.c
+++ b/ext/imap/php_imap.c
@@ -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 */