betz Sun Oct 26 19:43:14 2003 EDT
Modified files:
/phpdoc/en/reference/imap/functions imap-mail-compose.xml
/phpdoc/en/reference/ldap/functions ldap-add.xml
/phpdoc/en/reference/openssl/functions openssl-pkcs7-sign.xml
Log:
use example.com as per RFC 2606
Index: phpdoc/en/reference/imap/functions/imap-mail-compose.xml
diff -u phpdoc/en/reference/imap/functions/imap-mail-compose.xml:1.3
phpdoc/en/reference/imap/functions/imap-mail-compose.xml:1.4
--- phpdoc/en/reference/imap/functions/imap-mail-compose.xml:1.3 Fri Oct 24
07:53:07 2003
+++ phpdoc/en/reference/imap/functions/imap-mail-compose.xml Sun Oct 26 19:43:13
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/imap.xml, last change in rev 1.33 -->
<refentry id="function.imap-mail-compose">
<refnamediv>
@@ -24,9 +24,9 @@
<![CDATA[
<?php
-$envelope["from"]="[EMAIL PROTECTED]";
-$envelope["to"]="[EMAIL PROTECTED]";
-$envelope["cc"]="[EMAIL PROTECTED]";
+$envelope["from"]="[EMAIL PROTECTED]";
+$envelope["to"]="[EMAIL PROTECTED]";
+$envelope["cc"]="[EMAIL PROTECTED]";
$part1["type"]=TYPEMULTIPART;
$part1["subtype"]="mixed";
Index: phpdoc/en/reference/ldap/functions/ldap-add.xml
diff -u phpdoc/en/reference/ldap/functions/ldap-add.xml:1.2
phpdoc/en/reference/ldap/functions/ldap-add.xml:1.3
--- phpdoc/en/reference/ldap/functions/ldap-add.xml:1.2 Wed Apr 17 02:39:42 2002
+++ phpdoc/en/reference/ldap/functions/ldap-add.xml Sun Oct 26 19:43:14 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/ldap.xml, last change in rev 1.2 -->
<refentry id="function.ldap-add">
<refnamediv>
@@ -46,7 +46,7 @@
// prepare data
$info["cn"]="John Jones";
$info["sn"]="Jones";
- $info["mail"]="[EMAIL PROTECTED]";
+ $info["mail"]="[EMAIL PROTECTED]";
$info["objectclass"]="person";
// add data to directory
Index: phpdoc/en/reference/openssl/functions/openssl-pkcs7-sign.xml
diff -u phpdoc/en/reference/openssl/functions/openssl-pkcs7-sign.xml:1.6
phpdoc/en/reference/openssl/functions/openssl-pkcs7-sign.xml:1.7
--- phpdoc/en/reference/openssl/functions/openssl-pkcs7-sign.xml:1.6 Mon Oct 20
07:40:52 2003
+++ phpdoc/en/reference/openssl/functions/openssl-pkcs7-sign.xml Sun Oct 26
19:43:14 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/openssl.xml, last change in rev 1.4 -->
<refentry id="function.openssl-pkcs7-sign">
<refnamediv>
@@ -61,8 +61,8 @@
// encrypt it
if (openssl_pkcs7_sign("msg.txt", "signed.txt", "mycert.pem",
array("mycert.pem", "mypassphrase"),
- array("To" => "[EMAIL PROTECTED]", // keyed syntax
- "From" => "HQ <[EMAIL PROTECTED]>", // indexed syntax
+ array("To" => "[EMAIL PROTECTED]", // keyed syntax
+ "From" => "HQ <[EMAIL PROTECTED]>", // indexed syntax
"Subject" => "Eyes only"))
{
// message signed - send it!