parent
c1ecc90ec3
commit
42dce7bde9
|
|
@ -18,7 +18,6 @@ class MailUser extends Model
|
||||||
'can_login',
|
'can_login',
|
||||||
'quota_mb',
|
'quota_mb',
|
||||||
'rate_limit_per_hour',
|
'rate_limit_per_hour',
|
||||||
// -> KEINE used_bytes / message_count hier, die cachen wir separat
|
|
||||||
];
|
];
|
||||||
|
|
||||||
protected $hidden = ['password_hash'];
|
protected $hidden = ['password_hash'];
|
||||||
|
|
|
||||||
|
|
@ -143,6 +143,7 @@ class SystemDomainSeeder extends Seeder
|
||||||
$noReply = MailUser::firstOrCreate(
|
$noReply = MailUser::firstOrCreate(
|
||||||
['domain_id' => $systemDomain->id, 'localpart' => 'no-reply'],
|
['domain_id' => $systemDomain->id, 'localpart' => 'no-reply'],
|
||||||
[
|
[
|
||||||
|
'email' => 'no-reply@' . $systemDomain->domain,
|
||||||
'password_hash' => null,
|
'password_hash' => null,
|
||||||
'is_active' => true,
|
'is_active' => true,
|
||||||
'is_system' => true,
|
'is_system' => true,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue