blob: 4da4788db5412f66ed05386a9464db3429ae4efc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# do not forget to add $domain or it will not work
# do not hardcode the domain, or it will be harvested by bot
treasurer@<%= domain %> dams@<%= domain %>
president@<%= domain %> ennael@<%= domain %>
secretary@<%= domain %> misc@<%= domain %>
# later switch to a team alias
root@<%= domain %> sysadmin@group.<%= domain %>
security@<%= domain %> security_officers@group.<%= domain %>
# TODO see http://www.ietf.org/rfc/rfc2142.txt
<%
['postmaster','hostmaster','abuse','noc','security','listmaster','MAILER-DAEMON'].each { |a|
%>
<%= a %>@<%= domain %> root@<%= domain %>
<%
}
['webmaster','www'].each { |a|
%>
<%= a %>@<%= domain %> web@group.<%= domain %>
<% } %>
# TODO :
# info, marketing, sales -> marketing ( once we do have a team )
|