侧边栏壁纸
博主头像
Narutoの博客

行动起来,活在当下

  • 累计撰写 45 篇文章
  • 累计创建 24 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

linux 发送邮件

Naruto
2024-11-03 / 0 评论 / 0 点赞 / 6 阅读 / 0 字

linux 发送邮件

安装 msmtp

apk add msmtp

配置文件

  • /etc/msmtprc
# 为以下所有账户设置默认值。
defaults
auth           on
# 启用TLS加密
tls            on

tls_trust_file /etc/ssl/certs/ca-certificates.crt
logfile        /app/msmtp.log

# Naruto
account        naruto
host           mail.narutos.top
port           587

# 使用STARTTLS加密连接
tls_starttls   on

auth on

#from           [email protected]

# 发件人名称和地址
from           "Rclone" <[email protected]>

# 指定用于身份验证的用户名
user           [email protected]
password       xxxxxxxxxxxxxxxxx

# 设置默认账户
account default : naruto

发信测试

echo "hello there username." | msmtp -a default [email protected]

0

评论区