• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Issue How to setup slow postfix queue under Plesk

safraga

New Pleskian
Server operating system version
Debian 10.13
Plesk version and microupdate number
Plesk Obsidian Version 18.0.46
Hello,
I would like to setup slow postfix on outgoing emails.
I made a setup like this but it's not working.

/etc/postfix/main.cf
slow_destination_concurrency_limit = 30 slow_destination_rate_delay = 120s
/var/spool/postfix/plesk/transport
[ICODE]orange.fr slow:
wanadoo.fr slow:
laposte.net slow:
outlook.com slow:
hotmail.fr slow:
gmail.com slow:
bluewin.ch slow:
windowslive.com slow:
hotmail.com slow:
icloud.com slow:
outlook.fr slow:
msn.com slow:
ne.ch slow:
[/ICODE]
thank you for help
Best regards
 
Hello,
Yes we found the solution here

You need to add this in master.cf
# # Slow # slow unix - - n - 5 smtp -o syslog_name=postfix-slow -o smtp_destination_concurrency_limit=3 -o slow_destination_rate_delay=1

This must be added in main.cf
transport_maps = hash:/var/spool/postfix/plesk/transport slow_destination_recipient_limit = 30 slow_destination_concurrency_limit = 2 slow_destination_rate_delay = 60s default_destination_concurrency_limit = 10

And in /var/spool/postfix/plesk/transport
orange.fr slow: wanadoo.fr slow: laposte.net slow: outlook.com slow: hotmail.fr slow: gmail.com slow: bluewin.ch slow: windowslive.com slow: hotmail.com slow: icloud.com slow: outlook.fr slow: msn.com slow: ne.ch slow:

Hope that can help.
 
Back
Top