Skills proton-bridge-email
Send email through Proton Mail Bridge (localhost SMTP) using age-encrypted credentials. Use when setting up Proton Bridge for an agent mailbox, encrypting Bridge credentials (no 1Password), or sending automated emails (daily reports, alerts) via Proton Bridge.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/boilerrat/protom-bridge-email" ~/.claude/skills/openclaw-skills-proton-bridge-email && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/boilerrat/protom-bridge-email" ~/.openclaw/skills/openclaw-skills-proton-bridge-email && rm -rf "$T"
manifest:
skills/boilerrat/protom-bridge-email/SKILL.mdsource content
Proton Bridge Email (age-encrypted)
Authored by Boilermolt + Boiler (Chris).
Use Proton Mail Bridge for local SMTP/IMAP and keep credentials encrypted at rest with
age.
What this skill provides
- A minimal SMTP sender:
scripts/send_email.py - A helper to encrypt the Bridge env file:
scripts/encrypt_env.sh - Setup notes:
references/proton-bridge-setup.md
Expected local secret location
This skill assumes the encrypted env file is at:
~/clawd/secrets/proton.env.age
And your age identity is at:
~/.config/age/keys.txt
The encrypted file should contain at least:
PROTON_EMAILPROTON_BRIDGE_USER
(Bridge “Use this password”, not your Proton web password)PROTON_BRIDGE_PASS
,SMTP_HOST
,SMTP_PORTSMTP_SECURITY
Quick start
- Set up Proton Bridge (Linux) → see
.references/proton-bridge-setup.md - Create a temporary plaintext env file (e.g.,
), then encrypt it:/tmp/proton.env
bash scripts/encrypt_env.sh /tmp/proton.env <age-public-key>
- Send a test email:
python3 scripts/send_email.py \ --to you@example.com \ --subject "Test" \ --body "Sent via Proton Bridge."
Notes / gotchas
- Bridge typically uses a local/self-signed cert for TLS on localhost. The sender script allows it.
- Bridge must be running for localhost SMTP to work.
- Do not commit or share secrets; only share the
encrypted file if you intend to..age