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!