-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml.example
More file actions
51 lines (47 loc) · 1.59 KB
/
config.toml.example
File metadata and controls
51 lines (47 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# bingo-email 配置文件模板
# 复制为 ~/.config/bingo-email/config.toml 后填入真实信息:
# mkdir -p ~/.config/bingo-email
# cp config.toml.example ~/.config/bingo-email/config.toml
[account]
email = "your@email.com"
display_name = "Your Name"
[imap]
host = "imap.exmail.qq.com"
port = 993
encryption = "tls" # tls | starttls | none
login = "your@email.com" # 默认同 email,可不填
password = "your_auth_code_here" # 授权码(非登录密码!)
require_imap_id = false # ⚠️ 126/163 必须设为 true
[smtp]
host = "smtp.exmail.qq.com"
port = 465
encryption = "tls" # tls | starttls | none
login = "your@email.com" # 默认同 email,可不填
password = "your_auth_code_here" # 可与 imap 共用
# ============================================================
# 常见邮箱配置速查
# ============================================================
#
# 腾讯企业邮箱:
# host = "imap.exmail.qq.com" / "smtp.exmail.qq.com"
# port = 993 / 465, encryption = "tls"
#
# QQ 邮箱:
# host = "imap.qq.com" / "smtp.qq.com"
# port = 993 / 465 (SSL) 或 143 / 587 (STARTTLS)
#
# 163 网易邮箱:
# host = "imap.163.com" / "smtp.163.com"
# port = 993 / 465, require_imap_id = true ← 关键!
#
# 126 网易邮箱:
# host = "imap.126.com" / "smtp.126.com"
# port = 993 / 465, require_imap_id = true ← 关键!
#
# Gmail:
# host = "imap.gmail.com" / "smtp.gmail.com"
# 需要「应用专用密码」(非登录密码)
#
# Outlook:
# host = "outlook.office365.com"
# port = 993 (IMAP) / 587 (SMTP STARTTLS)