posthorn 0.2.10 → 0.2.11
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 +24 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -80,9 +80,9 @@ Step 3. Google Workspace. Ask: "Do you have a Google Workspace you can add new
|
|
|
80
80
|
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
|
-
- New Workspace:
|
|
84
|
-
|
|
85
|
-
one-time; it gets reused for every future domain and mailbox.
|
|
83
|
+
- New Workspace: walk them through the signup (browser step below: "Creating
|
|
84
|
+
a new Google Workspace org"), then delegation. Tell the user the org signup
|
|
85
|
+
is also one-time; it gets reused for every future domain and mailbox.
|
|
86
86
|
(Delegation is per org, not per domain, so with an existing org this step can
|
|
87
87
|
happen any time, even before the domain exists. The domain pipeline auto-adds
|
|
88
88
|
and verifies the new domain inside their org.)
|
|
@@ -133,6 +133,27 @@ to do this again." The repetition model, so you can answer follow-ups:
|
|
|
133
133
|
- For domain PURCHASES, the user also needs a payment method on their Cloudflare
|
|
134
134
|
account (they pay Cloudflare directly; Posthorn never bills for domains).
|
|
135
135
|
|
|
136
|
+
### Creating a new Google Workspace org (only when the user has none)
|
|
137
|
+
Tell the user: one-time, about 5 minutes, needs a credit card (Business
|
|
138
|
+
Starter is ~$7/user/month with a free trial).
|
|
139
|
+
Walk them through workspace.google.com → Get started:
|
|
140
|
+
1. Business name, employee count, region. Any values are fine.
|
|
141
|
+
2. Current email: any email they already read (personal Gmail is fine; it's
|
|
142
|
+
just the contact for signup).
|
|
143
|
+
3. When asked about a domain, choose the option saying they ALREADY HAVE a
|
|
144
|
+
domain, and enter the sending domain from step 2 of the flow. Do NOT buy
|
|
145
|
+
a domain from Google here, even if offered: the domain must stay at their
|
|
146
|
+
registrar/Cloudflare so Posthorn can manage its DNS.
|
|
147
|
+
4. Create the admin user, e.g. admin@<their-domain>. This account is the
|
|
148
|
+
org's SUPER-ADMIN: they should save the password, and this is the email
|
|
149
|
+
for `posthorn accounts workspace <admin-email>` later.
|
|
150
|
+
5. Pick Business Starter, add payment, finish signup.
|
|
151
|
+
6. If Google prompts to VERIFY the domain or set up MX records, skip it
|
|
152
|
+
("I'll do this later" / close the wizard). Posthorn does domain
|
|
153
|
+
verification and MX automatically once delegation is set up.
|
|
154
|
+
7. Continue to domain-wide delegation (next section), signed in as that new
|
|
155
|
+
super-admin.
|
|
156
|
+
|
|
136
157
|
### Google Workspace domain-wide delegation (one-time per Workspace org)
|
|
137
158
|
- Tell the user: "This is a one-time setup for your Workspace; you won't need
|
|
138
159
|
to do this again."
|
package/dist/index.js
CHANGED
|
@@ -581,7 +581,7 @@ function guide() {
|
|
|
581
581
|
|
|
582
582
|
// src/index.ts
|
|
583
583
|
var program = new Command();
|
|
584
|
-
program.name("posthorn").description("Posthorn: domain setup, mailbox creation, and email warmup").version("0.2.
|
|
584
|
+
program.name("posthorn").description("Posthorn: domain setup, mailbox creation, and email warmup").version("0.2.11");
|
|
585
585
|
program.addHelpText("after", `
|
|
586
586
|
Agents: run 'posthorn guide' first for the full workflow playbook.
|
|
587
587
|
|