• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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