From 12d604e31c2b7b3e65bf94c65525f1fa2c9aadee Mon Sep 17 00:00:00 2001 From: Friedhelm Betz Date: Mon, 27 Oct 2003 00:43:14 +0000 Subject: [PATCH] use example.com as per RFC 2606 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@143169 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/imap/functions/imap-mail-compose.xml | 8 ++++---- reference/ldap/functions/ldap-add.xml | 4 ++-- reference/openssl/functions/openssl-pkcs7-sign.xml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/reference/imap/functions/imap-mail-compose.xml b/reference/imap/functions/imap-mail-compose.xml index 93eda8ba33..71fda8481a 100644 --- a/reference/imap/functions/imap-mail-compose.xml +++ b/reference/imap/functions/imap-mail-compose.xml @@ -1,5 +1,5 @@ - + @@ -24,9 +24,9 @@ - + @@ -46,7 +46,7 @@ if ($ds) { // prepare data $info["cn"]="John Jones"; $info["sn"]="Jones"; - $info["mail"]="jonj@here.and.now"; + $info["mail"]="jonj@example.com"; $info["objectclass"]="person"; // add data to directory diff --git a/reference/openssl/functions/openssl-pkcs7-sign.xml b/reference/openssl/functions/openssl-pkcs7-sign.xml index b784947611..d279c5d941 100644 --- a/reference/openssl/functions/openssl-pkcs7-sign.xml +++ b/reference/openssl/functions/openssl-pkcs7-sign.xml @@ -1,5 +1,5 @@ - + @@ -61,8 +61,8 @@ fclose($fp); // encrypt it if (openssl_pkcs7_sign("msg.txt", "signed.txt", "mycert.pem", array("mycert.pem", "mypassphrase"), - array("To" => "joes@sales.com", // keyed syntax - "From" => "HQ ", // indexed syntax + array("To" => "joes@example.com", // keyed syntax + "From" => "HQ ", // indexed syntax "Subject" => "Eyes only")) { // message signed - send it!