H Hausherr New Pleskian Apr 12, 2022 #1 How can I disable Postfix's delivery notifications (DSN) in Plesk?
K Kaspar API expert Plesk Guru Apr 12, 2022 #2 Just as in any other Postfix setup: Postfix DSN Support. Don't forget to disable DNS in Roundcube as well (if you're using RC ofcourse). PHP: $config['dont_override'][] = 'dsn_default';
Just as in any other Postfix setup: Postfix DSN Support. Don't forget to disable DNS in Roundcube as well (if you're using RC ofcourse). PHP: $config['dont_override'][] = 'dsn_default';
H Hausherr New Pleskian Apr 12, 2022 #3 Have now done this as follows: Code: sudo postconf -e "smtpd_discard_ehlo_keyword_address_maps = cidr:/etc/postfix/esmtp_access" vi /etc/postfix/esmtp_access: Code: # Allow DSN requests from local subnet only 127.0.0.1/8 silent-discard [::1]/128 silent-discard 0.0.0.0/0 silent-discard, dsn ::/0 silent-discard, dsn Unfortunately, DSN doesn't work for me now either. I do not understand this, because I have defined my IP range an exception.
Have now done this as follows: Code: sudo postconf -e "smtpd_discard_ehlo_keyword_address_maps = cidr:/etc/postfix/esmtp_access" vi /etc/postfix/esmtp_access: Code: # Allow DSN requests from local subnet only 127.0.0.1/8 silent-discard [::1]/128 silent-discard 0.0.0.0/0 silent-discard, dsn ::/0 silent-discard, dsn Unfortunately, DSN doesn't work for me now either. I do not understand this, because I have defined my IP range an exception.