fix: Update temporary email logging to use correct domain extension

This commit is contained in:
chengchongzhen
2025-02-05 11:26:36 +08:00
parent dc4ecaad9d
commit b77319729e

View File

@@ -130,7 +130,9 @@ class Config:
logging.info(f"\033[32mIMAP密码: {'*' * len(self.imap_pass)}\033[0m") logging.info(f"\033[32mIMAP密码: {'*' * len(self.imap_pass)}\033[0m")
logging.info(f"\033[32mIMAP收件箱目录: {self.imap_dir}\033[0m") logging.info(f"\033[32mIMAP收件箱目录: {self.imap_dir}\033[0m")
if self.temp_mail != "null": if self.temp_mail != "null":
logging.info(f"\033[32m临时邮箱: {self.temp_mail}@{self.domain}\033[0m") logging.info(
f"\033[32m临时邮箱: {self.temp_mail}@{self.temp_mail_ext}\033[0m"
)
logging.info(f"\033[32m域名: {self.domain}\033[0m") logging.info(f"\033[32m域名: {self.domain}\033[0m")