← 返回
沟通协作

ProtonMail

Read, search, and scan ProtonMail via IMAP bridge (Proton Bridge or hydroxide). Includes daily digest for important emails.
通过IMAP桥接(Proton Bridge或hydroxide)读取、搜索和扫描ProtonMail,包含重要邮件的每日摘要。
durchblick-nl
沟通协作 clawhub v1.0.0 1 版本 99737.7 Key: 无需
★ 1
Stars
📥 2,642
下载
💾 91
安装
1
版本
#latest

概述

ProtonMail Skill

Access ProtonMail via IMAP using either:

  • Proton Bridge (official, recommended)
  • hydroxide (third-party, headless)

Setup

Option 1: Proton Bridge (Docker)

# Pull and run
docker run -d --name=protonmail-bridge \
  -v protonmail:/root \
  -p 143:143 -p 1025:25 \
  --restart=unless-stopped \
  shenxn/protonmail-bridge

# Initial login (interactive)
docker run --rm -it -v protonmail:/root shenxn/protonmail-bridge init
# Then: login → enter credentials → info (shows bridge password) → exit

Option 2: hydroxide (Headless)

# Install
git clone https://github.com/emersion/hydroxide.git
cd hydroxide && go build ./cmd/hydroxide

# Login
./hydroxide auth your@email.com

# Run as service
./hydroxide serve

Configuration

Create config file at ~/.config/protonmail-bridge/config.env:

PROTONMAIL_HOST=127.0.0.1
PROTONMAIL_PORT=143
PROTONMAIL_USER=your@email.com
PROTONMAIL_PASS=your-bridge-password

Or set environment variables directly.

Usage

# List mailboxes
protonmail.py mailboxes

# Show recent inbox
protonmail.py inbox --limit 10

# Show unread emails
protonmail.py unread

# Search emails
protonmail.py search "keyword"

# Read specific email
protonmail.py read 123

Daily Scan

The daily-scan.py script identifies important emails based on:

  • Important senders (banks, government, schools)
  • Urgent keywords (DE/EN/NL)

Configure important patterns in the script or via environment variables.

Sieve Filters (ProtonMail)

Recommended Sieve filter for auto-sorting:

require ["fileinto", "imap4flags"];

# Important emails - flag them
if anyof (
    address :contains "From" ["@bank", "@government"],
    header :contains "Subject" ["Urgent", "Dringend", "Belangrijk"]
) {
    addflag "\\Flagged";
}

# Newsletters - auto-read and move
if anyof (
    address :contains "From" "newsletter@",
    address :contains "From" "noreply@"
) {
    addflag "\\Seen";
    fileinto "Newsletter";
    stop;
}

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-28 13:42 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

communication-collaboration

Gmail

byungkyu
Gmail API 集成,托管 OAuth,支持读取、发送和管理邮件、线程、标签及草稿,适用于需要与 Gmail 交互的场景。
★ 72 📥 37,724
communication-collaboration

imap-smtp-email

gzlicanyi
使用IMAP/SMTP读取和发送邮件;检查新/未读邮件、获取内容、搜索邮箱、标记已读/未读、发送带附件的邮件。支持...
★ 113 📥 52,401
communication-collaboration

Slack

steipete
当需要通过 slack 工具从 Clawdbot 控制 Slack 时使用,包括在频道或私信中回复消息或置顶/取消置顶项目。
★ 157 📥 47,676