posthorn 0.2.8 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,7 +81,8 @@ domains and mailboxes to, or do you want to set up a new one?"
|
|
|
81
81
|
- Existing Workspace: delegation browser step (below), then
|
|
82
82
|
`posthorn accounts workspace <admin-email>`.
|
|
83
83
|
- New Workspace: they create one at workspace.google.com using the domain from
|
|
84
|
-
step 2, then delegation as above.
|
|
84
|
+
step 2, then delegation as above. Tell the user the org signup is also
|
|
85
|
+
one-time; it gets reused for every future domain and mailbox.
|
|
85
86
|
(Delegation is per org, not per domain, so with an existing org this step can
|
|
86
87
|
happen any time, even before the domain exists. The domain pipeline auto-adds
|
|
87
88
|
and verifies the new domain inside their org.)
|
|
@@ -110,11 +111,13 @@ click-by-click instructions. Before each browser step, share with the user that
|
|
|
110
111
|
this is a one-time setup, e.g. "This is a one-time setup step; you won't need
|
|
111
112
|
to do this again." The repetition model, so you can answer follow-ups:
|
|
112
113
|
- Cloudflare API token: once ever
|
|
114
|
+
- Workspace signup (only when creating a new org): once ever
|
|
113
115
|
- Workspace delegation: once per Workspace org
|
|
114
116
|
- DKIM: once per domain
|
|
115
117
|
- Everything else (domains, mailboxes, warmup): fully automated, no browser
|
|
116
118
|
|
|
117
119
|
### Cloudflare API token (one-time, for "buy new" or "own Cloudflare" domains)
|
|
120
|
+
- Tell the user: "This is a one-time setup; you won't need to do this again."
|
|
118
121
|
- dash.cloudflare.com/profile/api-tokens → Create Token → Custom Token
|
|
119
122
|
- Permissions: Account>Account Settings>Read, Account>Registrar: Domains>Admin,
|
|
120
123
|
Zone>Zone>Edit, Zone>DNS>Edit.
|
|
@@ -131,6 +134,8 @@ to do this again." The repetition model, so you can answer follow-ups:
|
|
|
131
134
|
account (they pay Cloudflare directly; Posthorn never bills for domains).
|
|
132
135
|
|
|
133
136
|
### Google Workspace domain-wide delegation (one-time per Workspace org)
|
|
137
|
+
- Tell the user: "This is a one-time setup for your Workspace; you won't need
|
|
138
|
+
to do this again."
|
|
134
139
|
- admin.google.com → Security → Access and data control → API controls →
|
|
135
140
|
Domain-wide delegation → Add new
|
|
136
141
|
- Client ID: 110137377718772968374
|
|
@@ -148,6 +153,8 @@ to do this again." The repetition model, so you can answer follow-ups:
|
|
|
148
153
|
(managed) or by polling `posthorn domains get <id>`.
|
|
149
154
|
|
|
150
155
|
### DKIM (per domain, Google has no DKIM API)
|
|
156
|
+
Tell the user: "This is a once-per-domain step; new mailboxes on this domain
|
|
157
|
+
won't need it."
|
|
151
158
|
If you have browser-automation tools, do it for the user:
|
|
152
159
|
- Navigate to https://admin.google.com/ac/apps/gmail/authenticateemail
|
|
153
160
|
(the URL may need /u/N/ for the right account slot, verify the "Selected
|
package/dist/index.js
CHANGED
|
@@ -580,7 +580,7 @@ function guide() {
|
|
|
580
580
|
|
|
581
581
|
// src/index.ts
|
|
582
582
|
var program = new Command();
|
|
583
|
-
program.name("posthorn").description("Posthorn: domain setup, mailbox creation, and email warmup").version("0.2.
|
|
583
|
+
program.name("posthorn").description("Posthorn: domain setup, mailbox creation, and email warmup").version("0.2.9");
|
|
584
584
|
program.addHelpText("after", `
|
|
585
585
|
Agents: run 'posthorn guide' first for the full workflow playbook.
|
|
586
586
|
|