Update to use norsh flag

This commit is contained in:
Zoe Slattery 2008-12-05 10:59:08 +00:00
parent a6f8a2428e
commit 2ba01be7ce
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
<?php <?php
// Change these to make tests run successfully // Change these to make tests run successfully
$server = '{localhost}'; $server = '{localhost/norsh}';
$default_mailbox = $server . "INBOX"; $default_mailbox = $server . "INBOX";
$domain = "something.com"; $domain = "something.com";
$admin_user = "webmaster"; // a user with admin access $admin_user = "webmaster"; // a user with admin access
@ -147,4 +147,4 @@ function get_mailbox_name($mailbox){
return $match[1]; return $match[1];
} }
?> ?>

View file

@ -2,7 +2,7 @@
extension_loaded('imap') or die('skip imap extension not available in this build'); extension_loaded('imap') or die('skip imap extension not available in this build');
// Change these to make tests run successfully // Change these to make tests run successfully
$mailbox = '{localhost}'; $mailbox = '{localhost/norsh}';
$username = 'webmaster@something.com'; $username = 'webmaster@something.com';
$password = 'p4ssw0rd'; $password = 'p4ssw0rd';
$options = OP_HALFOPEN; // this should be enough to verify server present $options = OP_HALFOPEN; // this should be enough to verify server present
@ -13,4 +13,4 @@ if (!$mbox) {
die("skip could not connect to mailbox $mailbox"); die("skip could not connect to mailbox $mailbox");
} }
imap_close($mbox); imap_close($mbox);
?> ?>