Sunil Mohan Adapa e08988507e
email: Name module ldap to postfix
There is nothing related to LDAP in the module. It actually configures postfix.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2022-03-02 07:38:38 -05:00

9 lines
258 B
Python

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