Better LuaDNS styling - remove unneeded concat
authorNigel Metheringham <nigel@exim.org>
Thu, 19 Apr 2012 11:54:00 +0000 (12:54 +0100)
committerNigel Metheringham <nigel@exim.org>
Thu, 19 Apr 2012 11:54:00 +0000 (12:54 +0100)
exim.org.lua

index 5ba15d8f67c388c1622998796a15fe8b361bcf0f..83007927e7b0848bb0cbbe64f7336cd919475660 100644 (file)
@@ -42,15 +42,15 @@ mx(_a,'boom.graemef.net', 15, ttl)
 mx('bugs','tahini.csx.cam.ac.uk', 5, ttl)
 
 -- Mirrors etc - A and a few CNAME records
-a(concat('www.us', _a),     '209.58.132.254',  ttl)
-a(concat('www.ie', _a),     '193.120.14.243',  ttl)
-a(concat('www.fr', _a),     '193.54.153.246',  ttl)
-a(concat('www.congo', _a),  '194.7.39.155',    ttl)
-a(concat('ftp.de', _a),     '195.211.161.101', ttl)
-a(concat('www.de', _a),     '195.211.161.101', ttl)
-a(concat('www.tw', _a),     '192.72.81.219',   ttl)
-a(concat('www.pl', _a),     '193.219.28.2',    ttl)
-cname(concat('www.no', _a), 'spheniscus.uninett.no', ttl)
-cname(concat('www.in', _a), 'exim.in.freeos.com',    ttl)
+a('www.us',     '209.58.132.254',  ttl)
+a('www.ie',     '193.120.14.243',  ttl)
+a('www.fr',     '193.54.153.246',  ttl)
+a('www.congo',  '194.7.39.155',    ttl)
+a('ftp.de',     '195.211.161.101', ttl)
+a('www.de',     '195.211.161.101', ttl)
+a('www.tw',     '192.72.81.219',   ttl)
+a('www.pl',     '193.219.28.2',    ttl)
+cname('www.no', 'spheniscus.uninett.no', ttl)
+cname('www.in', 'exim.in.freeos.com',    ttl)
 
 -- end
\ No newline at end of file