summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-02-24 10:47:48 -0800
committerelijah <elijah@riseup.net>2016-02-24 10:47:48 -0800
commite1d0289eb3b5e386b4db39fdc9d2d7c3b4fbf17e (patch)
tree08d0c629e9f24029d75b8f15a69f020fe114ae8b /lib
parente0690adba67a1b43c6ec03df0b558a0cf0f56dd8 (diff)
fixed dkim zone entry, closes #7925
Diffstat (limited to 'lib')
-rw-r--r--lib/leap_cli/commands/compile.rb11
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/leap_cli/commands/compile.rb b/lib/leap_cli/commands/compile.rb
index b98d591f..7c42962f 100644
--- a/lib/leap_cli/commands/compile.rb
+++ b/lib/leap_cli/commands/compile.rb
@@ -266,6 +266,8 @@ remove this directory if you don't use it.
# serial is any number less than 2^32 (4294967296)
#
def compile_zone_file
+ # note: we use the default provider for all nodes, because we use it
+ # to generate hostnames that are relative to the default domain.
provider = manager.env('default').provider
hosts_seen = {}
lines = []
@@ -315,7 +317,7 @@ remove this directory if you don't use it.
mx_domain = relative_hostname(node.domain.full_suffix, provider)
lines << [mx_domain, "IN MX 10 #{relative_hostname(node.domain.full, provider)}"]
spf ||= [mx_domain, spf_record(node)]
- dkim ||= dkim_record(node)
+ dkim ||= dkim_record(node, provider)
end
end
lines << spf if spf
@@ -358,13 +360,16 @@ remove this directory if you don't use it.
#
# specification: http://dkim.org/specs/rfc4871-dkimbase.html#rfc.section.7.4
#
- def dkim_record(node)
+ def dkim_record(node, provider)
# PEM encoded public key (base64), without the ---PUBLIC KEY--- armor parts.
assert_files_exist! :dkim_pub_key
dkim_pub_key = Path.named_path(:dkim_pub_key)
public_key = File.readlines(dkim_pub_key).grep(/^[^\-]+/).join
- host = node.mx.dkim.selector + "._domainkey"
+ host = relative_hostname(
+ node.mx.dkim.selector + "._domainkey." + node.domain.full_suffix,
+ provider)
+
attrs = [
"v=DKIM1",
"h=sha256",