Fix: Mailbox Stats über Dovecot mit config/mailpool.php

main v1.0.23
boban 2025-10-24 14:14:35 +02:00
parent c1ecc90ec3
commit 42dce7bde9
2 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,6 @@ class MailUser extends Model
'can_login',
'quota_mb',
'rate_limit_per_hour',
// -> KEINE used_bytes / message_count hier, die cachen wir separat
];
protected $hidden = ['password_hash'];

View File

@ -143,6 +143,7 @@ class SystemDomainSeeder extends Seeder
$noReply = MailUser::firstOrCreate(
['domain_id' => $systemDomain->id, 'localpart' => 'no-reply'],
[
'email' => 'no-reply@' . $systemDomain->domain,
'password_hash' => null,
'is_active' => true,
'is_system' => true,