Skip to content

Commit

Permalink
Use DKIM identifier from config file instead of hardcoded value
Browse files Browse the repository at this point in the history
  • Loading branch information
catphish committed Mar 17, 2023
1 parent fd289c4 commit 87e9b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/postal/dkim_header.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def initialize(domain, message)
else
@domain_name = Postal.config.dns.return_path
@dkim_key = Postal.signing_key
@dkim_identifier = "postal"
@dkim_identifier = Postal.config.dns.dkim_identifier
end
@domain = domain
@message = message
Expand Down

0 comments on commit 87e9b3e

Please sign in to comment.