mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-04 08:53:42 +00:00
- 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
15 lines
330 B
Python
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']
|