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
6 ## domain: hostname[::port] options
8 ## buildd.debian.org: raff.debian.org::587 byname
15 if nodeinfo['mailrelay']
16 mxmatches << 'mailout.debian.org'
17 extraroutes = [ "keyring.debian.org:\t\tkaufmann.debian.org" ]
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