mirror of
https://github.com/myronblair/infra
synced 2026-06-30 17:50:10 -05:00
52f6073593
AI context/memory from Claude Code sessions covering all infrastructure: JARVIS, NovaCPX, DO sites, Proxmox, FusionPBX, MediaStack, and project feedback/preferences.
50 lines
2.4 KiB
Markdown
50 lines
2.4 KiB
Markdown
---
|
|
name: project-smtp-credentials
|
|
description: SMTP and email credentials for all websites — CyberMail API, verified 2026-06-06
|
|
metadata:
|
|
node_type: memory
|
|
type: reference
|
|
originSessionId: f0b18417-cc26-4fdf-87ec-7b2d69b02c44
|
|
---
|
|
|
|
## CyberMail Account (all sites)
|
|
- **Dashboard:** https://platform.cyberpersons.com
|
|
- **API Key (all sites):** `sk_live_7f9b0f9a29f6de31a0d229d4af75d56b094ad724fc58a57d`
|
|
- **Send Endpoint:** `POST https://platform.cyberpersons.com/email/v1/send`
|
|
- **Auth:** `Authorization: Bearer {api_key}`
|
|
- **DO blocks SMTP port 587** — use API over HTTPS (port 443) for all DO-hosted sites
|
|
- **Last verified:** 2026-06-06 — live test send confirmed, all 5 sites checked
|
|
|
|
---
|
|
|
|
## tomsjavajive.com — CyberMail ✅ LIVE (verified 2026-06-06)
|
|
- **From:** noreply@tomsjavajive.com
|
|
- **Key stored in:** `settings` DB table, key `cybermail_api_key`
|
|
- **getSetting()** reads from `settings` table (setting_key / setting_value columns) — NOT site_settings
|
|
- **Mailer:** `includes/functions.php` → `sendEmail()` calls CyberMail API
|
|
- **Fixed 2026-06-06:** `email_cybermail` setting had `"api_key":"Joker1974!!!"` (wrong) — corrected to real API key
|
|
- **Note:** TJJ admin UI (admin/emails.php, admin/integrations.php) still shows SendGrid help links — cosmetic only
|
|
|
|
## tomtomgames.com — CyberMail ✅ LIVE (verified 2026-06-06)
|
|
- **From:** noreply@tomtomgames.com
|
|
- **Key stored in:** `includes/config.php` as `CYBERMAIL_API_KEY` constant
|
|
- **Mailer:** `includes/mailer.php` → `cybermailSend()` | alias: `sendgridSend()`
|
|
- **SMTP constants also defined** (SMTP_HOST, SMTP_USER, SMTP_PASS) for fallback reference
|
|
|
|
## epictravelexpeditions.com — CyberMail ✅ LIVE (verified 2026-06-06)
|
|
- **From:** noreply@orbishosting.com (sends via orbishosting.com domain)
|
|
- **Key stored in:** `/home/epictravelexpeditions.com/public_html/api/config.php` (gitignored)
|
|
- **Mailer:** `api/includes/mailer.php` → `sendgridSend()` (name kept for compat, calls CyberMail)
|
|
|
|
## parkerslingshotrentals.com — CyberMail ✅ LIVE (verified 2026-06-06)
|
|
- **From:** noreply@orbishosting.com
|
|
- **Key stored in:** `/home/parkerslingshotrentals.com/public_html/db.php` (in git)
|
|
- **sendEmail()** in db.php calls CyberMail API directly
|
|
|
|
## orbishosting.com / jarvis / orbis — No transactional email
|
|
|
|
---
|
|
|
|
## GitHub Repo
|
|
**myronblair/smtp-for-websites** (private, master branch) — credentials reference archive
|