mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-09-19 04:59:01 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
16 lines
508 B
Python
16 lines
508 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""Provides privileged actions that run as root."""
|
|
|
|
from .aliases import setup_aliases
|
|
from .dkim import fix_incorrect_key_ownership, get_dkim_public_key, setup_dkim
|
|
from .domain import set_domains
|
|
from .home import setup_home
|
|
from .postfix import setup_postfix
|
|
from .spam import setup_spam
|
|
|
|
__all__ = [
|
|
'setup_aliases', 'get_dkim_public_key', 'setup_dkim',
|
|
'fix_incorrect_key_ownership', 'set_domains', 'setup_home',
|
|
'setup_postfix', 'setup_spam'
|
|
]
|