*/ public static function all(): array { return [ new Check( key: 'delivery.mailer_not_log', group: self::GROUP, severity: Check::SEVERITY_BLOCKING, label: __('readiness.delivery.mailer_not_log'), breaks: __('readiness.delivery.mailer_not_log_breaks'), tab: 'mail', // Reads the transport's own definition of "does not really // send" rather than a second, narrower one. `!== 'log'` alone // called 'array' — the MAIL_MAILER this whole suite runs // under — delivered, which MailboxTransport::delegate() has // never agreed with. satisfied: ! in_array(config('mail.default'), MailboxTransport::NON_DELIVERING, true), ), new Check( key: 'delivery.mailbox', group: self::GROUP, severity: Check::SEVERITY_BLOCKING, label: __('readiness.delivery.mailbox'), breaks: __('readiness.delivery.mailbox_breaks'), tab: 'mail', satisfied: Mailbox::query()->exists(), ), new Check( key: 'delivery.mail_templates', group: self::GROUP, severity: Check::SEVERITY_WARNING, label: __('readiness.delivery.mail_templates'), breaks: __('readiness.delivery.mail_templates_breaks'), tab: 'templates', satisfied: MailTemplate::query()->exists(), ), new Check( key: 'delivery.inbound_password', group: self::GROUP, severity: Check::SEVERITY_WARNING, label: __('readiness.delivery.inbound_password'), breaks: __('readiness.delivery.inbound_password_breaks'), tab: 'integrations', satisfied: filled(app(SecretVault::class)->get('inbound_mail.password')), ), ]; } }