From a645ae32f8bc2a0f06cb8a991be0fca2b8d74fa4 Mon Sep 17 00:00:00 2001 From: Qinyang Liu <93815242+willow-god@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:19:47 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B1=E5=B0=9D=E8=AF=95=E6=89=93?= =?UTF-8?q?=E5=8D=B0=E5=AF=86=E7=A0=81=E5=89=8D=E5=85=AD=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- run.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run.py b/run.py index ef914ca..34fb5a9 100644 --- a/run.py +++ b/run.py @@ -28,6 +28,7 @@ if config["email_push"]["enable"] or config["rss_subscribe"]["enable"]: port = email_settings["port"] use_tls = email_settings["use_tls"] password = os.getenv("SMTP_PWD") + print("密码检测是否存在:", password[:6], "**********") if config["email_push"]["enable"]: print("邮件推送已启用") @@ -66,4 +67,4 @@ if config["rss_subscribe"]["enable"]: subject="清羽飞扬の最新文章:" + article["title"], body="文章链接:" + article["link"] + "\n" + "文章内容:" + article["summary"] + "\n" + "发布时间:" + article["published"], use_tls=use_tls - ) \ No newline at end of file + )