RE: [PHP-DOC] cvs: phpdoc /en/reference/mail ini.xml reference.xml From: James Cox (imajes <email protected>)
Date: 09/15/02

not meaning to nitpick, because you are doing a great job, but can you not
commit everything at once?

 -- james

> betz Sun Sep 15 12:47:14 2002 EDT
>
> Added files:
> /phpdoc/en/reference/mail ini.xml
>
> Modified files:
> /phpdoc/en/reference/mail reference.xml
> Log:
> ini.xml added, linked in reference
>
>
> Index: phpdoc/en/reference/mail/reference.xml
> diff -u phpdoc/en/reference/mail/reference.xml:1.6
> phpdoc/en/reference/mail/reference.xml:1.7
> --- phpdoc/en/reference/mail/reference.xml:1.6 Fri Aug 9
> 06:26:04 2002
> +++ phpdoc/en/reference/mail/reference.xml Sun Sep 15 12:47:13 2002
> @@ -1,5 +1,5 @@
> <?xml version="1.0" encoding="iso-8859-1"?>
> -<!-- $Revision: 1.6 $ -->
> +<!-- $Revision: 1.7 $ -->
> <reference id="ref.mail">
> <title>Mail functions</title>
> <titleabbrev>Mail</titleabbrev>
> @@ -22,85 +22,7 @@
> &no.install;
> </section>
>
> - <section id="mail.configuration">
> - &reftitle.runtime;
> - <para>
> - <variablelist>
> - <title>Mail Configuration Directives</title>
> -
> - <varlistentry id="ini.smtp">
> - <term>
> - <parameter>SMTP</parameter>
> - <type>string</type>
> - </term>
> - <listitem>
> - <para>
> - Used under Windws only: DNS name or IP address of the
> SMTP server PHP
> - should use for mail sent with the
> <function>mail</function> function.
> - </para>
> - </listitem>
> - </varlistentry>
> -
> - <varlistentry id="ini.smtp-port">
> - <term>
> - <parameter>SMTP</parameter>
> - <type>int</type>
> - </term>
> - <listitem>
> - <para>
> - Used under Windws only: Number of the port to connect
> to the server
> - specified with the <literal>SMTP</literal> setting when
> sending mail
> - with <function>mail</function>; defaults to 25. Only
> available since
> - <literal>PHP</literal> 4.3.0.
> - </para>
> - </listitem>
> - </varlistentry>
> -
> - <varlistentry id="ini.sendmail-from">
> - <term>
> - <parameter>sendmail_from</parameter>
> - <type>string</type>
> - </term>
> - <listitem>
> - <para>
> - Which "From:" mail address should be used in mail sent from
> - PHP under Windows.
> - </para>
> - </listitem>
> - </varlistentry>
> -
> - <varlistentry id="ini.sendmail-path">
> - <term>
> - <parameter>sendmail_path</parameter>
> - <type>string</type>
> - </term>
> - <listitem>
> - <para>
> - Where the <command>sendmail</command> program can be found,
> - usually <filename>/usr/sbin/sendmail</filename> or
> - <filename>/usr/lib/sendmail</filename>
> - <command>configure</command> does an honest attempt of
> - locating this one for you and set a default, but if it fails,
> - you can set it here.
> - </para>
> - <para>
> - Systems not using sendmail should set this directive to the
> - sendmail wrapper/replacement their mail system offers, if any.
> - For example, <ulink url="&url.qmail;">Qmail</ulink>
> - users can normally set it to
> - <filename>/var/qmail/bin/sendmail</filename> or <filename>
> - /var/qmail/bin/qmail-inject</filename>.
> - </para>
> - <para>
> - <command>qmail-inject</command> does not require any option to
> - process mail correctly.
> - </para>
> - </listitem>
> - </varlistentry>
> - </variablelist>
> -
> - </para>
> - </section>
> + &reference.mail.ini;
>
> <section id="mail.resources">
> &reftitle.resources;
>
> Index: phpdoc/en/reference/mail/ini.xml
> +++ phpdoc/en/reference/mail/ini.xml
> <?xml version="1.0" encoding="iso-8859-1"?>
> <!-- $Revision: 1.1 $ -->
> <section id="mail.configuration">
> &reftitle.runtime;
> &extension.runtime;
> <para>
> <table>
> <title>Mail configuration options</title>
> <tgroup cols="3">
> <thead>
> <row>
> <entry>Name</entry>
> <entry>Default</entry>
> <entry>Changeable</entry>
> </row>
> </thead>
> <tbody>
> <row>
> <entry>SMTP</entry>
> <entry>"localhost"</entry>
> <entry>PHP_INI_ALL</entry>
> </row>
> <row>
> <entry>smtp_port</entry>
> <entry>"25"</entry>
> <entry>PHP_INI_ALL</entry>
> </row>
> <row>
> <entry>sendmail_from</entry>
> <entry>NULL</entry>
> <entry>PHP_INI_ALL</entry>
> </row>
> <row>
> <entry>sendmail_path</entry>
> <entry>DEFAULT_SENDMAIL_PATH</entry>
> <entry>PHP_INI_SYSTEM</entry>
> </row>
> </tbody>
> </tgroup>
> </table>
> For further details and definition of the PHP_INI_* constants see
> <function>ini_set</function>.
> </para>
> <para>
> Here is a short explanation of the configuration directives.
> <variablelist>
> <varlistentry id="ini.smtp">
> <term>
> <parameter>SMTP</parameter>
> <type>string</type>
> </term>
> <listitem>
> <para>
> Used under Windws only: DNS name or IP address of the SMTP server PHP
> should use for mail sent with the <function>mail</function> function.
> </para>
> </listitem>
> </varlistentry>
>
> <varlistentry id="ini.smtp-port">
> <term>
> <parameter>SMTP</parameter>
> <type>int</type>
> </term>
> <listitem>
> <para>
> Used under Windws only: Number of the port to connect to the server
> specified with the <literal>SMTP</literal> setting when sending mail
> with <function>mail</function>; defaults to 25. Only available since
> <literal>PHP</literal> 4.3.0.
> </para>
> </listitem>
> </varlistentry>
>
> <varlistentry id="ini.sendmail-from">
> <term>
> <parameter>sendmail_from</parameter>
> <type>string</type>
> </term>
> <listitem>
> <para>
> Which "From:" mail address should be used in mail sent from
> PHP under Windows.
> </para>
> </listitem>
> </varlistentry>
>
> <varlistentry id="ini.sendmail-path">
> <term>
> <parameter>sendmail_path</parameter>
> <type>string</type>
> </term>
> <listitem>
> <para>
> Where the <command>sendmail</command> program can be found,
> usually <filename>/usr/sbin/sendmail</filename> or
> <filename>/usr/lib/sendmail</filename>.
> <command>configure</command> does an honest attempt of
> locating this one for you and set a default, but if it fails,
> you can set it here.
> </para>
> <para>
> Systems not using sendmail should set this directive to the
> sendmail wrapper/replacement their mail system offers, if any.
> For example, <ulink url="&url.qmail;">Qmail</ulink>
> users can normally set it to
> <filename>/var/qmail/bin/sendmail</filename> or <filename>
> /var/qmail/bin/qmail-inject</filename>.
> </para>
> <para>
> <command>qmail-inject</command> does not require any option to
> process mail correctly.
> </para>
> </listitem>
> </varlistentry>
> </variablelist>
>
> </para>
> </section>
>
> <!-- Keep this comment at the end of the file
> Local variables:
> mode: sgml
> sgml-omittag:t
> sgml-shorttag:t
> sgml-minimize-attributes:nil
> sgml-always-quote-attributes:t
> sgml-indent-step:1
> sgml-indent-data:t
> indent-tabs-mode:nil
> sgml-parent-document:nil
> sgml-default-dtd-file:"../../../manual.ced"
> sgml-exposed-tags:nil
> sgml-local-catalogs:nil
> sgml-local-ecat-files:nil
> End:
> vim600: syn=xml fen fdm=syntax fdl=2 si
> vim: et tw=78 syn=sgml
> vi: ts=1 sw=1
> -->
>
>
>
>
> --
> PHP Documentation Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php