Add mccarthy as admin web server and mail node
[hcoop/domtool2.git] / lib / mailman.dtl
CommitLineData
325285ab
AC
1{{Mailman mailing list system}}
2
3extern val mailmanWebHost : domain -> [Domain];
4{{Set the hostname of the web site for administration of mailing lists for this
5 domain.}}
e9f528ab 6
b5f2d506 7extern type mailman_node;
e9f528ab
AC
8{{Like <tt>web_node</tt>, but with the possibility of using some additional
9 nodes set by the admins.}}
10
b5f2d506 11extern val mailman_node : mailman_node;
e9f528ab
AC
12{{The default location for Mailman web interfaces}}
13
b5f2d506
AC
14extern val mailman_node_to_node : mailman_node -> node;
15
16extern type mailman_place;
17extern val mailman_place_default : mailman_node -> mailman_place;
18extern val mailman_place : mailman_node -> your_ip -> mailman_place;
19extern val mailman_place_to_web_node : mailman_place -> web_node;
20extern val mailman_place_to_node : mailman_place -> node;
21extern val mailman_place_to_ip : mailman_place -> ip;
22{{Analogous to <tt>web_place</tt>, but based on <tt>mailman_node</tt>s}}
e9f528ab
AC
23
24extern val mailmanVhost : host -> [Domain]
ae272cb5
AC
25 {MailmanPlaces : [mailman_place],
26 SSL : ssl,
27 User : your_user,
28 ServerAdmin : email};
e9f528ab
AC
29{{Create an Apache virtual host to serve as the web interface for some Mailman
30 lists.}}
31
32val mailman = \ host : (host) -> begin
c4b8e3b5
AC
33 let
34 domainHost host;
35 in
b5f2d506 36 dnsIP host (ip_of_node (mailman_node_to_node mailman_node));
c4b8e3b5
AC
37 mwh <- Hostname;
38 mailmanWebHost mwh;
39 mailmanVhost host where
b5f2d506 40 MailmanPlaces = [mailman_place_default mailman_node];
c4b8e3b5
AC
41 SSL = no_ssl
42 end
43 end
e9f528ab
AC
44end;
45{{The most common Mailman config, for when you want to have a virtual host of your
46 domain dedicated to a Mailman interface. Provide the name of that host (e.g.,
47 "lists") to this directive, and it will take care of the rest.}}