-
-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(console): DKIM, DMARC & SPF records for custom domains #2347
feat(console): DKIM, DMARC & SPF records for custom domains #2347
Conversation
6416414
to
9a9abb1
Compare
00b96f4
to
3c5b1d4
Compare
3b08b9f
to
a71dfef
Compare
3c5b1d4
to
ff60c62
Compare
6ad0129
to
a7dcb28
Compare
0ca8389
to
8fa6523
Compare
82065af
to
282ddc2
Compare
@@ -54,3 +54,4 @@ jobs: | |||
env: | |||
INTERNAL_CLOUDFLARE_ZONE_ID: ${{ secrets.INTERNAL_CLOUDFLARE_ZONE_ID }} | |||
TOKEN_CLOUDFLARE_API: ${{ secrets.TOKEN_CLOUDFLARE_API }} | |||
INTERNAL_DKIM_SELECTOR: ${{ secrets.INTERNAL_DKIM_SELECTOR }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to add it to secret
stanza above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added
@@ -54,3 +54,4 @@ jobs: | |||
NODE_ENV: 'development' | |||
INTERNAL_CLOUDFLARE_ZONE_ID: ${{ secrets.INTERNAL_CLOUDFLARE_ZONE_ID }} | |||
TOKEN_CLOUDFLARE_API: ${{ secrets.TOKEN_CLOUDFLARE_API }} | |||
INTERNAL_DKIM_SELECTOR: ${{ secrets.INTERNAL_DKIM_SELECTOR }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add to secret
stanza above as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added
@@ -70,9 +70,9 @@ export const loader: LoaderFunction = getRollupReqFunctionErrorWrapper( | |||
// we need to figure out DKIM | |||
// for custom domains |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this comment need to remain? Remove, if not.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed
packages/utils/getDNSRecordValue.ts
Outdated
const values = packet.answers.map((a) => { | ||
if (a.type === 'TXT') { | ||
const strParts = new Array(a.data.length) | ||
for (let i = 0; i < a.data.length; i++) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we do this as a for..of
so we avoid any potential out-of-bounds or off-by-one errors?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
Description
Related Issues
Testing
profile
appChecklist