mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 04:45:48 +03:00
[GH-ISSUE #208] NsAdmin Email Substitution #94
Labels
No labels
Documentation
Documentation
bug
enhancement
feature request
feature request
help wanted
pull-request
question
security
security
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/acme-dns#94
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 @Elte156 on GitHub (Jan 11, 2020).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/208
Just curious about the automatic substitution. Why is this being done?
This will be transformed to
contact@example.com.What about the valid addresses that have a
.before the@symbol?Wouldn't
firstname.lastname.example.combe translated tofirstname@lastname.example.com, when it should befirstname.lastname@example.com?@joohoi commented on GitHub (Jan 11, 2020):
Cheers! This is because of the format of the SOA record.
That said, you just identified a lack of documentation for that comment. The actual dots in the e-mail address (except for the TLD) should be escaped with
\, sofirstname.lastname@example.comshould becomefirstname\.lastname.example.com.I think the comment should be fixed. Do you want to create a PR, or should I?
@Elte156 commented on GitHub (Jan 11, 2020):
Thanks for the quick explanation! I'll leave the update to you.