• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Plesk 9.2 and Postfix

Status
Not open for further replies.
L

Lord Senil

Guest
Hello,

I've tried change some postfix configurations:

/usr/sbin/postconf -e 'default_destination_recipient_limit=100'

but when I restart service daemon

I' tried

/usr/sbin/postconf -d | grep default_destination_recipient_limit

Showme:
default_destination_recipient_limit = 50
lmtp_destination_recipient_limit = $default_destination_recipient_limit
relay_destination_recipient_limit = $default_destination_recipient_limit
smtp_destination_recipient_limit = $default_destination_recipient_limit
virtual_destination_recipient_limit = $default_destination_recipient_limit

Don't change anything.

Someone have same problem?

Thx.
 
Lord Senil,

You shouldn't use -d option there. It is for default values.

[root@plesk92 ~]# /usr/sbin/postconf | grep default_destination_recipient_limit
default_destination_recipient_limit = 100

[root@plesk92 ~]# /usr/sbin/postconf -e 'default_destination_recipient_limit=90'

[root@plesk92 ~]# /usr/sbin/postconf | grep default_destination_recipient_limit
default_destination_recipient_limit = 90

[root@plesk92 ~]# /usr/sbin/postconf -d | grep default_destination_recipient_limit
default_destination_recipient_limit = 50
 
Status
Not open for further replies.
Back
Top