
/**
 ** Mailer
 **/

/* What method should we use for sending mail? Valid options are
 * currently 'sendmail' and 'smtp'.
 */
$conf['mailer']['type'] = 'smtp';

/* An array holding any parameters that the Mail object will need to
 * function correctly. For sendmail, this is mainly the sendmail_path
 * option; SMTP requires at least a server and a port (if nonstandard).
 */
$conf['mailer']['params'] = array();
// $conf['mailer']['params'] = array('sendmail_path' => '/usr/lib/sendmail');
$conf['mailer']['params'] = array('server' => 'mail.{ $DomainName }');
