0

我收到了几封来自wordpress@mydomain.tld的邮件,邀请我连接到我的管理区域以审核评论。

示例:WordPress 2013 年 10 月 21 日 04:22:00 对您的帖子的新评论正在等待您的批准。评论:[...] 你有新评论!转到链接... [...]请访问管理面板:唱歌

“Si*ng* in”中的链接重定向到网络钓鱼页面。我通过更改 wordpress 电子邮件的管理进行了一些更改,但我继续收到这些消息。

我想知道是否可以停止发送邮件wordpress@mydomain.tld

4

2 回答 2

1

不,您无法阻止其他人假装他们正在从您的域发送电子邮件。您可以做的最好的事情是更改您的 wordpress 实例发送电子邮件的电子邮件地址,然后在您选择的电子邮件客户端中将来自旧电子邮件地址的任何电子邮件标记为垃圾邮件。

于 2013-10-22T13:06:00.730 回答
0

I always change the default email account that Wordpress uses to send mail to something unique because of this very reason. There is no way you can prevent scammers from imitating an email address.

There are several plugins that will change the Wordpress From Email info, but to do this programmatically you can use:

function hidden_mail_from($old) {
 return 'wordpress_secure@yourdomain.com';
}
add_filter('wp_mail_from', 'hidden_mail_from');

function hidden_mail_from_name($old) {
 return 'My Wordpress Install 1234';
}
add_filter('wp_mail_from_name', 'hidden_mail_from_name');

If you aren't a developer I would recommend the SMTP plugin: http://wordpress.org/plugins/smtp/

And most of the other SMTP plugins on the Plugin Repository: http://wordpress.org/plugins/search.php?q=SMTP

If you are really interested you can look at the mail headers in your email client to determine the origin server of the email and potentially create a rule to filter spam out based solely on that header but the plugins are much easier.

于 2013-10-29T02:31:42.743 回答