diff options
author | elijah <elijah@riseup.net> | 2013-05-14 12:23:20 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-05-14 12:23:20 -0700 |
commit | b3d1c6c58838b0c4f368bc42493ac3bae280b5af (patch) | |
tree | 0763e27a19a4729f30259297c46ecb04f8f60518 /provider_base/files | |
parent | 4132a1b857c79670ef457ae7e11b77b6ff2c477b (diff) |
added smtp-service.json, requires latest leap_cli
Diffstat (limited to 'provider_base/files')
-rw-r--r-- | provider_base/files/service-definitions/v1/smtp-service.json.erb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/provider_base/files/service-definitions/v1/smtp-service.json.erb b/provider_base/files/service-definitions/v1/smtp-service.json.erb new file mode 100644 index 00000000..68d4bbab --- /dev/null +++ b/provider_base/files/service-definitions/v1/smtp-service.json.erb @@ -0,0 +1,29 @@ +<%= + def underscore(words) + words = words.to_s.dup + words.downcase! + words.gsub! /[^a-z]/, '_' + words + end + + hsh = {} + hsh["serial"] = 1 + hsh["version"] = 1 + locations = {} + hosts = {} + nodes_like_me[:services => 'mx'].each_node do |node| + host = {} + host["hostname"] = node.domain.full + host["ip_address"] = node.ip_address + host["port"] = 25 # hard coded for now, later node.smtp.port + if node['location'] + location_name = underscore(node.location.name) + host["location"] = location_name + locations[location_name] ||= node.location + end + hosts[node.name] = host + end + hsh["hosts"] = hosts + hsh["locations"] = locations + generate_json hsh +%>
\ No newline at end of file |