• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question Outgoing mail control : Manage rejected messages ?

Pascal_Netenvie

Regular Pleskian
Hi,
On our servers we use Outgoing mail control from Plesk 17.5.
When a subscription is over quota, for example it try to send 500 mails instead of 50 in one hour, is there a special queue where rejected messages are stored in ?
If this queue exist how to empty it ?

Cheers :)
 
Hi Pascal_Netenvie,

this is actually not a "special" queue, it's just the normal mail - server queue, which you are able to see at => HOME > Tools & Settings > Mail Server Settings > (tab) Mail Queue , or with the command ( logged in as user "root" over SSH ):
Code:
mailq

or

postqueue -p
... when you use postfix.

If you desire to delete the mail queue, you could use:
Code:
postsuper -d ALL

... or if you desire to delete all "deferred" mails, you could use:
Code:
postsuper -d ALL deferred

Over the Plesk Control Panel, you have as well the choice to flush/delete/clear the mail queue. ;)


For additional postfix informations, you might like to visit: => Postfix manual - postqueue(1)
 
Thanks for answer, i know all that
But even with mailq empty i have new rejected messages that i can't find !
That 's why i ask that.
 
The messages that are rejected by the outgoing mail limit are not queued. They are discarded. Else in case of viruses sending mail your mail queue would fill up with tens of thousands of mails waiting for the next opportunity to pass the mail limit. It does not make sense to queue such messages for further delivery attempts.
 
Hi Peter,
Ok i understand the point but in this case how can we analyse one or two message to find origin of problem ??
Outgoing control script should keep some messages somewhere in a log to help find out where is the problem.
 
@Pascal_Netenvie You can find a log about those rejected message in /var/log/maillog or the specific mail log of your operation system. Search for REJECT message as outgoing mail rate limits are exceeded . The extra information provided by from= and to= can help to identify the root cause for hitting the limit.
 
Back
Top