| | |
| | | } |
| | | } |
| | | exec("postconf -e 'smtpd_recipient_restrictions = ".implode(", ", $new_options)."'"); |
| | | exec('postfix reload'); |
| | | } |
| | | |
| | | if($mail_config['reject_sender_login_mismatch'] != $old_ini_data['mail']['reject_sender_login_mismatch']) { |
| | |
| | | array_splice($new_options, $i, 0, array('reject_authenticated_sender_login_mismatch')); |
| | | } |
| | | exec("postconf -e 'smtpd_sender_restrictions = ".implode(", ", $new_options)."'"); |
| | | exec('postfix reload'); |
| | | } |
| | | |
| | | if ($mail_config["mailbox_virtual_uidgid_maps"] == 'y') { |
| | | // If dovecot switch to lmtp |
| | | if($app->system->is_installed('dovecot')) { |
| | | exec("postconf -e 'virtual_transport = lmtp:unix:private/dovecot-lmtp'"); |
| | | exec('postfix reload'); |
| | | } |
| | | } |
| | | else { |
| | | // If dovecot switch to dovecot |
| | | if($app->system->is_installed('dovecot')) { |
| | | exec("postconf -e 'virtual_transport = dovecot'"); |
| | | exec('postfix reload'); |
| | | } |
| | | } |
| | | |