dataset/seed/postfix-relay/templates/lmtp

10 lines
285 B
Text
Raw Normal View History

2023-06-23 08:12:05 +02:00
{% for domain in lmtp.server_lmtp %}
{% set name=domain|normalize_family %}
{% for lst in lmtp['lmtp_' + name]['criteria_' + name] %}
{% if '@' not in lst %}
{% set lst = '.*@' + lst %}
{% endif %}
/^{{ lst }}$/ lmtp:[{{ domain }}]:8024
{% endfor %}
{% endfor %}