]> granicus.if.org Git - php/commitdiff
use example.com instead of real domain name
authorAntony Dovgal <tony2001@php.net>
Sun, 25 Jan 2009 23:26:30 +0000 (23:26 +0000)
committerAntony Dovgal <tony2001@php.net>
Sun, 25 Jan 2009 23:26:30 +0000 (23:26 +0000)
ext/standard/tests/mail/ezmlm_hash_error.phpt
ext/standard/tests/mail/mail_include.inc
ext/standard/tests/mail/mail_skipif.inc

index 7170f7318ae874dd89bb64cb12001873a7766ff7..10de223c3952a32792a98ff597f23d1746b2b7b3 100644 (file)
@@ -14,7 +14,7 @@ var_dump( ezmlm_hash() );
 
 echo "\n-- Testing ezmlm_hash() function with more than expected no. of arguments --\n";
 $extra_arg = 10;
-var_dump( ezmlm_hash("webmaster@something.com", $extra_arg) );
+var_dump( ezmlm_hash("webmaster@example.com", $extra_arg) );
 
 echo "\n-- Testing ezmlm_hash() function with invalid input - ARRAY --\n";
 $array_arg = array(1,2,3,4);
@@ -63,4 +63,4 @@ NULL
 
 Warning: ezmlm_hash() expects parameter 1 to be binary string, resource given in %s on line %d
 NULL
-===DONE===
\ No newline at end of file
+===DONE===
index a93187871d465fdb96d20f5ed4ce56870bde400d..a0ff5e0c170c74e81975b350050c5e7e893e228d 100644 (file)
@@ -2,7 +2,7 @@
 // Change these to make tests run successfully
 $server   = '{localhost}';
 $default_mailbox = $server . "INBOX";
-$domain = "something.com";
+$domain = "example.com";
 $admin_user = "webmaster"; // a user with admin access 
 $username = "$admin_user@$domain";
 $password = 'p4ssw0rd';
@@ -147,4 +147,4 @@ function get_mailbox_name($mailbox){
        return $match[1];
 }
 
-?>
\ No newline at end of file
+?>
index d01fcd986f3c383084368175de8379ba23e55dba..2f4fbf3d6f3f30a67567fb04144144fef384be11 100644 (file)
@@ -3,7 +3,7 @@ extension_loaded('imap') or die('skip imap extension not available in this build
  
 // Change these to make tests run successfully
 $mailbox  = '{localhost}';
-$username = 'webmaster@something.com';
+$username = 'webmaster@example.com';
 $password = 'p4ssw0rd';
 $options = OP_HALFOPEN; // this should be enough to verify server present
 $retries = 0; // dont retry connect on failure
@@ -13,4 +13,4 @@ if (!$mbox) {
        die("skip could not connect to mailbox $mailbox");
 }
 imap_close($mbox);
-?>
\ No newline at end of file
+?>