mirror of
https://github.com/modoboa/modoboa.git
synced 2026-04-25 17:06:01 +03:00
[GH-ISSUE #1403] DKIM: wrong bind record syntax for subdomains #1114
Labels
No labels
bug
bug
dependencies
design
documentation
duplicate
enhancement
enhancement
enhancement
feedback-needed
help-needed
help-needed
installer
invalid
looking-for-sponsors
modoboa-contacts
new-ui
new-ui
pr
pull-request
pyconfr
python
question
security
stale
webmail
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/modoboa-modoboa#1114
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tonioo on GitHub (Feb 24, 2018).
Original GitHub issue: https://github.com/modoboa/modoboa/issues/1403
Originally assigned to: @tonioo on GitHub.
The TXT record generated for DKIM keys is wrong for subdomains.
Example (sub.domain.test):
selector._domainkey IN TXT ...
instead of:
selector._domainkey.sub IN TXT ...
@Toniob commented on GitHub (Feb 24, 2018):
You should put the complete domain to be certain it works everytime. In your example :
selector._domainkey.sub.domain.test. IN TXT
Just don't forget the trailing "." . Sometimes, what you think is a subdomain isn't (did you think of the tld .co.uk ? or the eu.org ?)
@ghost commented on GitHub (Feb 24, 2018):
It depends on how you configure your DNS, the following 3 examples all achieve the same thing in bind
@tonioo for Modoboa I would probably go for the 3rd option as it doesn't make any assumptions about
$ORIGINbeing defined.@tonioo commented on GitHub (Feb 24, 2018):
@Toniob @fyfe I choose the latest one (easier to implement).