后缀更多alias_maps中的来源,首先匹配?

我在我的Postfixconfiguration中有一个条目,如下所示:

virtual_alias_maps = mysql:/etc/postfix/virtual_alias_mysql.cf,hash:/etc/postfix/virtual-aliases-map 

如果同一地址在两个来源中,哪一个将被使用? 首场比赛或最后一场比赛? 如果你有这个答案,请给我一个参考,我可以在Postfix的文档中find它。

Postfix会在第一张地图之后停下来,他会得到一个结果,也就是说,如果你的地图包含:

 $ cat a [email protected] bob $ cat b [email protected] bob2 

并且你有virtual_alias_maps = hash:a hash:b [email protected]的查找结果将是“ bob ”,而不是“ bob2 ”和“ bob,bob2 ”。

虽然我似乎无法find它logging的地方。