fliu e2535bad49
email: audit: improve the speed of post-installation setup
- New class: `MainCfDiagnosis`
  - "Advise and repair" mechanism reduces the number of postconf calls

- File locking: lock acquisition moved into audit module
  - Enables finer-grained control
2021-08-17 19:43:07 -07:00

15 lines
222 B
Python

"""The domain audit resource"""
# SPDX-License-Identifier: AGPL-3.0-or-later
from . import models
def get():
# Stub
return [models.Diagnosis('Email domains')]
def repair():
# Stub
raise RuntimeError()