Fixes #733 - Be more considerate of others

This commit is contained in:
Sam Georges 2014-11-01 16:14:38 +11:00
parent 919cb83f96
commit e81b7394b1
3 changed files with 3 additions and 3 deletions

View File

@ -54,7 +54,7 @@ return array(
|
*/
'from' => array('address' => 'noreply@site.com', 'name' => 'October'),
'from' => array('address' => 'noreply@domain.tld', 'name' => 'OctoberCMS'),
/*
|--------------------------------------------------------------------------

View File

@ -7,7 +7,7 @@ use Backend\Models\UserGroup;
class SeedSetupAdmin extends Seeder
{
public static $email = 'admin@admin.com';
public static $email = 'admin@domain.tld';
public static $login = 'admin';
public static $password = 'admin';
public static $firstName = 'Admin';

View File

@ -26,7 +26,7 @@ class MailSettings extends Model
$config = App::make('config');
$this->send_mode = $config->get('mail.driver', static::MODE_MAIL);
$this->sender_name = $config->get('mail.from.name', 'Your Site');
$this->sender_email = $config->get('mail.from.address', 'admin@admin.admin');
$this->sender_email = $config->get('mail.from.address', 'admin@domain.tld');
$this->sendmail_path = $config->get('mail.sendmail', '/usr/sbin/sendmail');
$this->smtp_address = $config->get('mail.host');
$this->smtp_port = $config->get('mail.port', 587);