kokokokokokkonnenenen as a mail relay
[mirror/dsa-puppet.git] / modules / exim / templates / manualroute.erb
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5 ## Format:
6 ## domain: hostname[::port] options
7 ## example:
8 ## buildd.debian.org: raff.debian.org::587 byname
9
10 <%=
11 mxmatches = [ fqdn ]
12 routes = []
13 extraroutes = []
14
15 if nodeinfo['mailrelay']
16   mxmatches << 'mailout.debian.org'
17   extraroutes = [ "keyring.debian.org:\t\tkaufmann.debian.org" ]
18 end
19
20 mxregex = Regexp.new('^\d+\s+(.*)\.$')
21 mxinfo.keys.sort.each do |host|
22   mxinfo[host]['mXRecord'].each do |mx|
23     mxmatch = mxregex.match(mx)
24     if mxmatches.include?(mxmatch[1])
25       route = host + ":\t\t" + host
26       if localinfo.has_key?(host) and localinfo[host].has_key?('mail_port') and localinfo[host]['mail_port'].to_s != ''
27         route += "::" + localinfo[host]['mail_port'].to_s
28       end
29       routes << route
30     end
31   end
32 end
33
34 routes << extraroutes
35
36 routes.join("\n")
37 %>