最近,我收到了很多邮件发送失败,大约20%的时间。
它曾经是较少,然后在我们的共享主机上的一些域名被列入黑名单,所有的电子邮件无法交付。
问题已经解决了,我们的IP不再被列入黑名单,但是最近的传送率却很低。
所以我想问的是,如果你的IP被从spamhouse除名,你还会受到之前上市的影响吗?
另外,从邮件传递失败中可以学到什么?
这是我正在犯的错误:
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following a
我收到以下消息失败响应:
Delivery to the following recipient failed permanently:
xxxxx@xxxxx.com
Technical details of permanent failure:
Google tried to deliver your message, but it was rejected by the server for the recipient domain xxxxx.com by mailserver1.xxxxx.com. [xxx.xxx.xxx.xxx].
The error that t
也许这有点傻,但我只是不确定哪种更好。如果我必须在db中检查超过10k行才能存在,我该怎么办?
#1 -一个查询
select id from table1 where name in (smth1,smth2...{till 30k})
#2 -多个查询
select id from table1 where name=smth1
虽然,性能不是目标,但我也不想使用mysql ;)也许,任何其他解决方案都会更适合……谢谢。
更新:任务是获取域名列表,保存新的(还不在数据库中),并删除列表中显示的域名。希望,这会有一点帮助..。