You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems to me that there is a bug in the current release as it suddenly always configures postgrey in the smtpd_recipient_restrictions. After having a look at the template for the main.cf there is only a condition which type of postgrey has to be configured and not a surounding condition if it should be configured at all:
<% if @postgrey_policy_service -%>
check_policy_service <%= @postgrey_policy_service %>,
<% else -%>
check_policy_service unix:postgrey/socket,
<% end -%>
should probably be:
<% if @postgrey -%>
<% if @postgrey_policy_service -%>
check_policy_service <%= @postgrey_policy_service %>,
<% else -%>
check_policy_service unix:postgrey/socket,
<% end -%>
<% end -%>
The text was updated successfully, but these errors were encountered:
It seems to me that there is a bug in the current release as it suddenly always configures postgrey in the
smtpd_recipient_restrictions
. After having a look at the template for themain.cf
there is only a condition which type of postgrey has to be configured and not a surounding condition if it should be configured at all:should probably be:
The text was updated successfully, but these errors were encountered: