-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
38 lines (38 loc) · 1.1 KB
/
app.json
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
{
"name": "POST邮件者",
"description": "利用Heroku实现POST发送邮件",
"image": "https://cdn.jsdelivr.net/gh/HexoPlusPlus/HPPCommentMailer/logo.png",
"repository": "https://github.com/HexoPlusPlus/HPPCommentMailer",
"env": {
"token": {
"description": "token验证"
},
"mail_server": {
"description": "SMTP服务器地址",
"value": "smtp.exmail.qq.com"
},
"mail_username": {
"description": "SMTP登录用户名",
"value": "[email protected]"
},
"mail_password": {
"description": "SMTP登录密码"
},
"mail_sender": {
"description": "邮箱发送用名,格式请用 发件人名字<发件人邮箱>,发件人邮箱若与SMTP登陆用户名不一致很容易被收件邮箱服务提供商丢入垃圾箱",
"value": "ChenYFan<[email protected]>"
},
"mail_port": {
"description": "SMTP端口",
"value": "25"
},
"site_url": {
"description": "站点网址",
"value": "https://blog.cyfan.top"
},
"site_name": {
"description": "站点名字",
"value": "ChenYFanの博客"
}
}
}