fliu f400eb9439
email: implemented service alert
- Better error handling
- You may retroactively diagnose and fix problems
- Shows the most important issues first

audit.models.Diagnosis
  - Added JSON serialization (needed for IPC)
  - Replaced ambiguous vocabulary
  - Provided a sorting key

audit, diagnosis
  - Support title translation
2021-08-20 19:24:21 -07:00

15 lines
330 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Provides diagnosis and repair of email server configuration issues
"""
from . import domain
from . import home
from . import ldap
from . import models
from . import rcube
from . import spam
from . import tls
__all__ = ['domain', 'home', 'ldap', 'models', 'rcube', 'spam', 'tls']