summaryrefslogtreecommitdiff
path: root/ext/imap
diff options
context:
space:
mode:
authorZoe Slattery <zoe@php.net>2008-12-17 15:36:06 +0000
committerZoe Slattery <zoe@php.net>2008-12-17 15:36:06 +0000
commitfee9ce41f3066b2dd49483ebdfa5d23e3a24cf6c (patch)
tree26dd88533fa2f01e09b8a07c44442a450ec95f36 /ext/imap
parentb8a79234df6d3adcd41a37533ef398c2b5dc1509 (diff)
downloadphp-git-fee9ce41f3066b2dd49483ebdfa5d23e3a24cf6c.tar.gz
README for ext/imap tests
Diffstat (limited to 'ext/imap')
-rw-r--r--ext/imap/tests/README45
1 files changed, 45 insertions, 0 deletions
diff --git a/ext/imap/tests/README b/ext/imap/tests/README
new file mode 100644
index 0000000000..0d222ad0b8
--- /dev/null
+++ b/ext/imap/tests/README
@@ -0,0 +1,45 @@
+
+Many of the tests in this directory require a mail server to be running, if there is no mail server the test will skip and warn, see skipif.inc for details.
+
+To make the tests run parameters in the skipif.inc and imap_include.inc file will need to be changed to match the local mailserver configuration.
+
+
+The tests have been checked using dovecot (on Linux 32 and 64 bit systems) and hMailServer on Windows. The tests are intended to be mailserver agnostic.
+
+The tests can be run without modification with a fairly minimal dovecot installation. For information, the dovecot.conf file used in running the tests is given below (after -----). The dovecot password file (dovecotpass) requires a password for one user, webmaster@something.com. It's also necessary to set up one additional user ID (vmail) to own the mail directory.
+
+--------------------------------------------------
+protocols = imap imaps
+
+listen = *
+
+ssl_disable = yes
+
+disable_plaintext_auth=yes
+
+## Mailbox locations and namespaces
+
+mail_location = maildir:/home/vmail/mail/%d/%n/Maildir
+
+auth_verbose = yes
+
+auth_debug = yes
+
+auth default {
+
+ mechanisms = login
+
+ passdb passwd-file {
+ args = /etc/dovecot/dovecotpass
+ }
+
+ userdb static {
+ args = uid=11459 gid=1002 home=/home/vmail/dovecot/mail/%d/%n
+ }
+
+ user = root
+}
+
+
+
+