blob: 69da52c577657a0175db4ee52c64d73c5ab6cf82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
title.gettext restricted list
<%- if @ldap_group -%>
search(<%= @ldap_group %>.ldap) smtp,md5,smime -> do_it
<%- end -%>
<%- if @email -%>
<%- for e in @email -%>
equal([sender], '<%= e %>') smtp,md5,smime -> do_it
<%- end -%>
<%- end -%>
true() smtp,md5,smime -> reject(reason='send_subscriber')
|