root/trunk/system/config/email.php

Revision 3700, 0.7 kB (checked in by Shadowhand, 12 days ago)

Updates to trunk:

  • Removed all SYSPATH file checks
  • Deleted some modules: code_coverage (3.0), shoutbox (defunct), user_guide (defunct), kobot (3.0), object_db (3.0)
  • Updated ORM and ORM_Iterator to match 3.0, enabling the new HABTM stuff, see r3636 and r3640
  • Property svn:eol-style set to LF
  • Property copyright set to Copyright (c) 2008 Kohana Team
  • Property svn:keywords set to Id
Line 
1<?php
2/**
3 * SwiftMailer driver, used with the email helper.
4 *
5 * @see http://www.swiftmailer.org/wikidocs/v3/connections/nativemail
6 * @see http://www.swiftmailer.org/wikidocs/v3/connections/sendmail
7 * @see http://www.swiftmailer.org/wikidocs/v3/connections/smtp
8 *
9 * Valid drivers are: native, sendmail, smtp
10 */
11$config['driver'] = 'native';
12
13/**
14 * To use secure connections with SMTP, set "port" to 465 instead of 25.
15 * To enable TLS, set "encryption" to "tls".
16 *
17 * Driver options:
18 * @param   null    native: no options
19 * @param   string  sendmail: executable path, with -bs or equivalent attached
20 * @param   array   smtp: hostname, (username), (password), (port), (auth), (encryption)
21 */
22$config['options'] = NULL;
Note: See TracBrowser for help on using the browser.