Skip to content

Commit 99a3cb4

Browse files
author
Marius Burkard
committed
Merge branch '5889-place-reject_rbl_client-after-permit_sasl_authenticated-in-postfix-config' into 'develop'
Resolve "Place reject_rbl_client after permit_sasl_authenticated in postfix config" Closes #5889 See merge request ispconfig/ispconfig3!1531
2 parents 19b24c6 + 5fa5f4e commit 99a3cb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/plugins-available/postfix_server_plugin.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ function update($event_name, $data) {
138138
if ($value == '') continue;
139139
if (preg_match('/^reject_rbl_client/', $value)) continue;
140140
$new_options[] = $value;
141-
if (preg_match('/^permit_mynetworks/', $value)) {
141+
if (preg_match('/^permit_sasl_authenticated/', $value)) {
142142
$new_options = array_merge($new_options, $rbl_options);
143143
$rbl_options = array(); // so we don't ever array_merge twice
144144
}

0 commit comments

Comments
 (0)