check_sys/audit/system/plugins/postfix/postfix.py
2023-09-08 16:34:48 +02:00

10 lines
189 B
Python

#!/usr/bin/env python3
def postfix() -> list:
postfix = list()
postfix.append({
'directive': "inet_interfaces",
'value': "loopback-only",
})
return postfix