根据邮政服务官方手册,
弹跳_队列_生命期
如果传递失败并出现临时错误,并且队列中的时间已达到bounce_queue_lifetime限制,则将跳转消息视为不可交付。默认情况下,此限制与普通邮件相同。
最大值_队列_生命期
如果传递失败并出现临时错误,并且队列中的时间已达到maximal_queue_lifetime限制,则将消息视为不可交付。
因为我收到警告为:postfix/qmgr[10221]: warning: bounce_queue_lifetime is larger than maximal_queue_lifetime - adjusting bounce_queue_lifetime。
我想知道bounce_queue_lifetime和maximal_queue_lifetime有什么区别
发布于 2020-09-28 02:53:58
我找到了另一个解释http://www.postfix.org/TUNING_README.html
maximal_queue_lifetime (默认日期:5天)消息在队列中停留多久,然后作为不可交付的消息被发回。为第一次发送失败尝试后应立即返回的邮件指定0。
bounce_queue_lifetime (默认日期:5天,可与后缀版本2.1及更高版本一起使用)邮件-守护进程消息在队列中停留多久才被视为不可交付。为只应尝试一次的邮件指定0。
https://serverfault.com/questions/957456
复制相似问题