blob: 63650c84efcb8c5af397918c9fb06bb6d265cf0c (
plain)
1
2
3
4
5
6
7
8
|
# everything is handled with transports in postfix,
# but according to https://www.sympa.org/faq/postfix, we also need this one
<% escaped_domain = ( 'ml.' + domain ).sub('.','\.') %>
/^(.*)-owner\@<%= @escaped_domain %>$/ $1+owner@ml.<%= @domain %>
# redirect the mail from the ml domain to sysadmin
/^listmaster\@<%= @escaped_domain %>$/ listmaster@<%= @domain %>
# errors are sent there, so that should also be redirected
/^sympa-request\@<%= @escaped_domain %>$/ listmaster@<%= @domain %>
|