X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fexim%2Ftemplates%2Fmanualroute.erb;h=10f246ac65a251f981a10ea72da18133c6e0d049;hb=9cb14d6c9d70dc56f6c8347f1770a7d79c809d35;hp=0e57849a4d57a9d985f25cb232fca49866717a08;hpb=3eb533e5499e66423bafdedaf6c7d08ead1772de;p=mirror%2Fdsa-puppet.git diff --git a/modules/exim/templates/manualroute.erb b/modules/exim/templates/manualroute.erb index 0e57849a4..10f246ac6 100644 --- a/modules/exim/templates/manualroute.erb +++ b/modules/exim/templates/manualroute.erb @@ -5,19 +5,21 @@ ## Format: ## domain: hostname[::port] options ## example: -## buildd.debian.org: raff.debian.org::587 byname +## buildd.debian.org: grieg.debian.org::587 byname <%= -mxmatches = [ fqdn ] +mxmatches = [ scope.lookupvar('::fqdn') ] routes = [] extraroutes = [] if scope.lookupvar('site::nodeinfo')['mailrelay'] mxmatches << 'mailout.debian.org' + mxmatches << 'INCOMING-MX' extraroutes = [ "keyring.debian.org:\t\tkaufmann.debian.org" ] + extraroutes << "www-master.debian.org:\t\twolkenstein.debian.org" end -mxregex = Regexp.new('^\d+\s+(.*)\.$') +mxregex = Regexp.new('^\d+\s+(.*?)\.?$') scope.lookupvar('site::allnodeinfo').keys.sort.each do |host| next unless scope.lookupvar('site::allnodeinfo')[host]['mXRecord'] scope.lookupvar('site::allnodeinfo')[host]['mXRecord'].each do |mx|