Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/cf_maildesk_cf_lifecycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ def sender_readback_available(sender: dict[str, Any]) -> bool:
def sender_domain_enable_plan_command(domain: str) -> str:
quoted_domain = shlex.quote(domain)
return (
"cfctl apply sender_domain enable "
"CF_TOKEN_LANE=global cfctl apply sender_domain enable "
f"--zone {quoted_domain} --name {quoted_domain} --plan"
)

Expand Down
2 changes: 1 addition & 1 deletion scripts/verify_maildesk_cf_contract.sh
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ jq -e '
and .readiness.mail_ready == false
and (.drift_classes | index("sender_domain_drift")) != null
and (.drift_classes | index("provider_status_unavailable")) == null
and any(.plan.operations[]; .surface == "sender_domain" and .preview_command == "cfctl apply sender_domain enable --zone example.com --name example.com --plan" and .blocked == null)
and any(.plan.operations[]; .surface == "sender_domain" and .preview_command == "CF_TOKEN_LANE=global cfctl apply sender_domain enable --zone example.com --name example.com --plan" and .blocked == null)
' "${unverified_sender_artifact_path}" >/dev/null || die "unverified sender-domain drift contract did not match"

cfctl_output="$(
Expand Down
Loading