domani-cli 0.4.45 → 0.4.47
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 +7 -0
- package/dist/domani.cjs +127 -126
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -102,6 +102,12 @@ domani email forward hello@startup.dev --forward-to me@gmail.com
|
|
|
102
102
|
# CURSOR_AUTH contains the complete value, e.g. "Bearer sender-key"
|
|
103
103
|
domani email webhook hello@startup.dev --url https://myapp.dev/hooks/email \
|
|
104
104
|
--authorization-env CURSOR_AUTH
|
|
105
|
+
domani email webhook-test hello@startup.dev
|
|
106
|
+
|
|
107
|
+
# Provision domain + mailbox + authenticated event webhook in one call.
|
|
108
|
+
# The secret stays in the environment; only its variable name is in argv.
|
|
109
|
+
AGENT_AUTH="Bearer sender-key" domani provision agent.dev \
|
|
110
|
+
--webhook https://agent.example/inbox --authorization-env AGENT_AUTH
|
|
105
111
|
|
|
106
112
|
# Export DNS records before making changes
|
|
107
113
|
domani dns startup.dev snapshot
|
|
@@ -147,6 +153,7 @@ domani email read|unread|star|unstar user@domain --message-ids m1,m2
|
|
|
147
153
|
domani email send user@domain Send an email (--to, --subject, --body, --cc, --bcc)
|
|
148
154
|
domani email forward user@domain Forward inbound to a personal address (--forward-to)
|
|
149
155
|
domani email webhook user@domain Forward inbound as JSON (--url, --authorization-env, --api-key-env, --clear-headers)
|
|
156
|
+
domani email webhook-test user@domain Deliver one signed test event to the configured webhook
|
|
150
157
|
domani email setup --domain <domain> Auto-configure MX, SPF, DKIM, DMARC
|
|
151
158
|
domani email status --domain <domain> Check email DNS health
|
|
152
159
|
domani email connect --domain <domain> <provider> Connect external provider (Gmail, Fastmail, Proton)
|