fliu fdc6f23908
email: Implement email_server ipc set_sasl and set_submission
- Rewrote action script to eliminate stdin communication
- Changed return type of audit.*.get()
  - An audit can return multiple lines of diagnostics
- Move recommended endpoint URLs into function docstrings
2021-08-17 19:42:32 -07:00

15 lines
219 B
Python

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