我使用 phpBB 3.0.12 并遇到问题: 一些邮件服务,例如邮件服务,识别来自我的垃圾邮件的激活电子邮件,并返回 550错误
Oct 27 10:37:02 26sp postfix / smtp [31754]:33347587974: to =,orig_to =, relay = mxs.mail.ru [217.69.139.150]:25,延迟= 2.5, 延迟= 0.01 / 0 / 0.08 / 2.4,dsn = 5.0.0,状态=退回(主机 mxs.mail.ru [217.69.139.150]说: 550垃圾邮件被拒绝。 请拜访 http://help.mail.ru/notspam-support/id?c=Jdo_XLgUDbBjA8QmVnqeZQShDEMZPvTFdwpE_P3-ufG-37333wCzdKLWRJxdUdKdCgAAAPSVAAAAriEj 或向abuse@corp.mail.ru报告详情。错误代码: 5C3FDA25B00D14B826C40363659E7A56430CA104C5F43E19FC440A77F1B9FEFDF7BDDFBE74B300DF9C44D6A29DD2515D。 ID:0000000A000095F42321AE00。 (回复DATA命令的结尾))
550错误表示从forum和mail.ru标记为垃圾邮件的用户将任何邮件归类为垃圾邮件。我已发送请求支持从垃圾邮件列表中删除论坛,但论坛发送的任何电子邮件通知都不会收到mail.ru中的电子邮件。
问题:如果用户在注册时输入**** @ mail.ru,我想写一些不发送电子邮件激活的内容。但我不熟悉phpBB。 有人可以帮我找到发送激活电子邮件的功能。
如果有任何帮助,我将非常感激。
答案 0 :(得分:0)
重要!在进行任何更改之前,请确保备份以防万一出错。
使用FTP从您的站点下载此文件 - language/xx/ucp.php
(其中xx是语言代码,例如英语为en
)
在适当的文本编辑器中打开它,该编辑器能够将文件保存为UTF8 without BOM
而不是文字处理器或记事本,因为这些可能会导致问题。
我将使用英文版本为您举例说明我在网站上使用的内容...
寻找:
'UCP_ADMIN_ACTIVATE' => 'Please note that you will need to enter a valid e-mail address before your account is activated. The administrator will review your account and if approved you will receive an e-mail at the address you specified.',
和:
'UCP_EMAIL_ACTIVATE' => 'Please note that you will need to enter a valid e-mail address before your account is activated. You will receive an e-mail at the address you provide that contains an account activation link.',
您可以更改这两行中的消息以满足您的需求。完成后,使用FTP保存并上传回服务器。