Fixes #733 - Be more considerate of others
This commit is contained in:
parent
919cb83f96
commit
e81b7394b1
|
|
@ -54,7 +54,7 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'from' => array('address' => 'noreply@site.com', 'name' => 'October'),
|
||||
'from' => array('address' => 'noreply@domain.tld', 'name' => 'OctoberCMS'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue