Fix redacted placeholders in public-facing files
Restore contact email in website (public-facing). Use env var reference for workflow notification address. Clean up backlog task notes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
19cf1de886
commit
c4a2bc7164
|
|
@ -36,7 +36,7 @@ Set up CosmoLocal World infrastructure: Mailcow SMTP for cosmolocal.world, Docmo
|
||||||
### Mailcow (cosmolocal.world)
|
### Mailcow (cosmolocal.world)
|
||||||
- Mailbox: noreply@cosmolocal.world
|
- Mailbox: noreply@cosmolocal.world
|
||||||
- Alias: newsletter@cosmolocal.world → noreply@cosmolocal.world (sender_allowed=1)
|
- Alias: newsletter@cosmolocal.world → noreply@cosmolocal.world (sender_allowed=1)
|
||||||
- SMTP: ***REDACTED_SMTP_HOST***:465 (TLS)
|
- SMTP: [SMTP_HOST]:465 (TLS)
|
||||||
- DNS: SPF, DKIM (2048-bit), DMARC all configured on Cloudflare
|
- DNS: SPF, DKIM (2048-bit), DMARC all configured on Cloudflare
|
||||||
- Google Postmaster Tools verified
|
- Google Postmaster Tools verified
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -112,7 +112,7 @@
|
||||||
{
|
{
|
||||||
"parameters": {
|
"parameters": {
|
||||||
"fromEmail": "={{ $env.N8N_SMTP_SENDER }}",
|
"fromEmail": "={{ $env.N8N_SMTP_SENDER }}",
|
||||||
"toEmail": "***REDACTED_EMAIL***",
|
"toEmail": "={{ $env.N8N_SMTP_SENDER }}",
|
||||||
"subject": "={{ $json.subject }}",
|
"subject": "={{ $json.subject }}",
|
||||||
"emailType": "html",
|
"emailType": "html",
|
||||||
"html": "={{ $json.htmlBody }}",
|
"html": "={{ $json.htmlBody }}",
|
||||||
|
|
|
||||||
|
|
@ -455,10 +455,10 @@ export default function Home() {
|
||||||
communities, and impact-driven investors.
|
communities, and impact-driven investors.
|
||||||
</p>
|
</p>
|
||||||
<a
|
<a
|
||||||
href="mailto:***REDACTED_EMAIL***"
|
href="mailto:hello@cosmolocal.world"
|
||||||
className="mt-6 inline-block rounded-full bg-accent px-6 py-2.5 text-sm font-medium text-white transition-colors hover:bg-accent-light"
|
className="mt-6 inline-block rounded-full bg-accent px-6 py-2.5 text-sm font-medium text-white transition-colors hover:bg-accent-light"
|
||||||
>
|
>
|
||||||
***REDACTED_EMAIL***
|
hello@cosmolocal.world
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue