fliu 9a98ddadd4
email: postfix: dovecot: Set strong security parameters
Other changes:
- Fix linter error
- Postfix port 25: do not trust localhost IP addresses
2021-08-17 19:44:11 -07:00

13 lines
270 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 spam
from . import tls
__all__ = ['domain', 'home', 'ldap', 'spam', 'tls']