openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit e0f26e9b7576d20480bd504bd0513b6f46eed605
parent 9db5c3f054267e4adbb1e408a6d1cdc0647af37c
Author: dankert <devnull@localhost>
Date:   Mon,  5 Nov 2007 21:41:48 +0100

Einstellungen f?r eigenen SMTP-Client.

Diffstat:
config/mail.ini.php | 52++++++++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 50 insertions(+), 2 deletions(-)

diff --git a/config/mail.ini.php b/config/mail.ini.php @@ -31,4 +31,53 @@ priority=3 ; 'Quoted-printable' (default), ; 'Base64' ; '' (blank) no encoding. -header_encoding="Quoted-printable"- \ No newline at end of file +header_encoding="Quoted-printable" + + +; Which SMTP client you want to use. +; 'php' : Internal PHP function mail(). +; 'smtp': OpenRat internal SMTP-client +; If unsure, use the builtin PHP function. +;client=smtp +client=php + + + +; Settings for the internal SMTP client. +; If client='php', you have no need to change anything in this section. +[smtp] + +; Relay host +; It is useful, to have your own relay host, as servers doing greylisting +; *will* deny our smtp try. +; If this is blank, the mail is delivered directly to the destination MX host. +; I repeat, it is better to always use a relay host! +;host="mail.yourdomain.example" +host="locahost" + +; SMTP-Port is '25' in most environments +port="25" + +; SMTP Authentication +; (only needed if using a relay host) +; (FYI: The client makes use of the SMTP "AUTH LOGIN" method. +auth_username="your.user@something.example" +auth_password="notsecret" + +; Timeout in seconds +timeout="45" + +; Your fully-qualified hostname (FQDN) +; if empty, Openrat will use your simple hostname +localhost= +;localhost="your.fully.qualified.hostname.example" + +; Use TLS +; The client will send a "STARTTLS" command after HELO. +; TLS is not tested, use at your own risk! +tls=false + +; Use SSL +; The client will connection using the SSL-protocol. +; This is not tested, use at your own risk! +ssl=false