Skip to content
  • Solutions
    By Role
    • For Developers
    • For Content Managers
    • For Agencies
    • For IT Admins
    • For Web Hosters
    • For Developers
    • For Content Managers
    • For Agencies
    • For IT Admins
    • For Web Hosters
    By Infrastructure
    • Overview
    • AWS
    • Microsoft Azure
    • Alibaba Cloud
    • Google Cloud Platform
    • Vultr
    • Overview
    • AWS
    • Microsoft Azure
    • Alibaba Cloud
    • Google Cloud Platform
    • Vultr
    • Digital Ocean
    • Linode
    • Upcloud
    • Oracle
    • OVH
    • Digital Ocean
    • Linode
    • Upcloud
    • Oracle
    • OVH
  • Product
    • Plesk Features
    • Plesk Editions
    • What’s new
    • Pricing
    • Roadmap
    • Lifecycle Policy
    • Extensions Catalogue
  • Pricing
  • Extensions
    Featured Extensions
    • SocialBee
    • WP Toolkit
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Joomla! Toolkit
    • Premium Email
    • Email Security
    • SocialBee
    • WP Toolkit
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Joomla! Toolkit
    • Premium Email
    • Email Security
    Bundles and packs:
    • Business and Collaboration Edition
    • WP pack
    • Hosting pack
    • Power pack
    • Language pack
    • Business and Collaboration Edition
    • WP pack
    • Hosting pack
    • Power pack
    • Language pack

    See all Extensions

  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
  • Pricing
  • Solutions
    • By Role
      • For Developers
      • For Content Managers
      • For Agencies
      • For IT Admins
      • For Web Hosters
    • By Infrastructure
      • Overview
      • Plesk on Amazon Web Services (AWS & Lightsail)
      • Microsoft Azure
      • Alibaba Cloud
      • Google Cloud Platform
      • Vultr
      • DigitalOcean
      • Linode
      • UpCloud
      • Oracle
      • OVH
  • Products
  • Pricing
  • Extensions
    • Featured Extensions
      • SocialBee
      • WP Toolkit
      • Sitejet Builder for Plesk
      • SEO Toolkit
      • Joomla! Toolkit
      • Premium Email
      • Email Security
    • Bundles and packs:
      • Business and Collaboration Edition
      • WP pack
      • Hosting pack
      • Power pack
      • Language pack
      • See all Extensions
  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate Program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
  • Pricing
  • Solutions
    • By Role
      • For Developers
      • For Content Managers
      • For Agencies
      • For IT Admins
      • For Web Hosters
    • By Infrastructure
      • Overview
      • Plesk on Amazon Web Services (AWS & Lightsail)
      • Microsoft Azure
      • Alibaba Cloud
      • Google Cloud Platform
      • Vultr
      • DigitalOcean
      • Linode
      • UpCloud
      • Oracle
      • OVH
  • Products
  • Pricing
  • Extensions
    • Featured Extensions
      • SocialBee
      • WP Toolkit
      • Sitejet Builder for Plesk
      • SEO Toolkit
      • Joomla! Toolkit
      • Premium Email
      • Email Security
    • Bundles and packs:
      • Business and Collaboration Edition
      • WP pack
      • Hosting pack
      • Power pack
      • Language pack
      • See all Extensions
  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate Program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
Plesk 360 login
Free Trial

Knowledge Base

When mailbox on Plesk server is full, email sent to the mailbox is rejected during SMTP secession without bounce message

 
backupdatabaseemailipmail

Symptoms

  • When mailbox on Plesk server is full, email sent to the mailbox is rejected during SMTP session without bounce message.
  • In /var/log/maillog, the following entries can be found:

    qmail-queue-handlers[15273]: Handlers Filter before-queue for qmail started ...
    qmail-queue-handlers[15273]: [email protected]
    qmail-queue-handlers[15273]: [email protected]
    qmail-queue-handlers[15273]: handlers_stderr: DATA Mailbox full#015
    qmail-queue-handlers[15273]: handlers_stderr: DEFER
    qmail-queue-handlers[15273]: DEFER during call 'check-quota' handler

Cause

By default, Plesk's mail service does not send bounce response when a user's mailbox is full to prevent mass spamming with bounce messages. Plesk "check-quota" mail handler is used for deferring incoming emails without bounce message.

Resolution

The feature described above can be disabled on Plesk server.

Solution for Plesk Onyx and higher

Note: Disabling "check-quota" mail handler is strongly not recommended because server's IP may be blacklisted due to lot of bounce messages which can be considered as spam by other servers.

Note: if user runs  "plesk repair mail" command line tool it will re-enable "check-quota" mail handler back.

  1. Connect to the server via SSH.
  2. Run the following commands to disable "check-quota" handler:

    /usr/local/psa/admin/sbin/mail_handlers_control --disable --name=check-quota --type=global --queue=before-queue
    /usr/local/psa/admin/sbin/mail_handlers_control --disable --name=check-quota --type=global --queue=before-sendmail

After disabling 'check-quota' handler bounce messages will be send each time when recipient's mailbox has no sufficient space to receive an email.

Solution for Plesk 12.0

Note: Disabling "check-quota" mail handler is strongly not recommended because server's IP may be blacklisted due to lot of bounce messages which can be considered as spam by other servers.

  1. Connect to the server via SSH.

  2. Backup Plesk database:

      plesk db dump psa > /root/psa_dump.`date +%F.%s`.sql

  3. Run the following commands to disable "check-quota" handler:

    # MYSQL_PWD=`cat /etc/psa/.psa.shadow` mysql -u admin psa -e "REPLACE INTO misc VALUES ('reject_mail_when_overquota', 'false')"

    For 64-bit OS run the command:

    # /usr/lib64/plesk-9.0/mail_mailbox_restore --handlers-only

    For 32-bit OS run the command:

    # /usr/lib/plesk-9.0/mail_mailbox_restore --handlers-only

To enable  "check-quota" handler back, use following commands:

# MYSQL_PWD=`cat /etc/psa/.psa.shadow` mysql -u admin psa -e "REPLACE INTO misc VALUES ('reject_mail_when_overquota', 'true')"

For 64-bit OS run the command:

# /usr/lib64/plesk-9.0/mail_mailbox_restore --handlers-only

For 32-bit OS run the command:

# /usr/lib/plesk-9.0/mail_mailbox_restore --handlers-only

Tweet
Share
Share
Email
0 Shares
Read the full article
Related Posts

You Are Always Safe When You Have an Up-To-Date Plesk Backup

Read More »

Plesk with Centralized Database and Network File System

Read More »

Full Site Check now scans for Google Fonts

Read More »
Knowledge Base

Email header analysis reports SPF failed for localhost IP on mail sent from Plesk hosted mailbox: SPF Authentication : SPF Failed for IP – 127.0.0.1

Read More »

Mail delivery does not work: do not list domain in BOTH mydestination and virtual_mailbox_domains

Read More »

Mail stuck in the queue in the server with Plesk: Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock’ (13)

Read More »

Unable to send mail from Plesk server: deferred (delivery temporarily suspended: connect to 127.0.0.1[127.0.0.1]:10024: Connection refused)

Read More »

Hosting Wiki

  • Cross Site Request Forgery (CSRF)
  • Cross-Origin Resource Sharing (CORS)
  • Server Redundancy
  • QMAIL
  • Sendmail
  • Postfix
  • PostgreSQL
  • DDoS
  • Bare Metal Server
  • Backup
  • MySQL
  • Oracle VM Server
  • Server Virtualization Software
  • Windows Server
  • Linux
  • JavaScript
  • SQL
  • Hosting Control Panel
  • Plesk
  • SQL database
  • NoSQL Database
  • Web Server
  • DNS Server
  • IPv6
  • IPv4
  • SIP
  • SSH
  • UDP/IP
  • Colocation Hosting
  • Reseller Hosting
  • Cloud Hosting
  • VPS Hosting
  • Dedicated Hosting
  • Shared Hosting
  • Free Hosting
  • Managed Hosting
  • Email Autoresponder
  • Mailing Lists
  • Email Alias
  • Email Virus Protection
  • Email Forwarding
  • Webmail
  • SpamAssassin
  • SPAM filter
  • SPAM
  • TCP/IP
  • SMTP
X-twitter Linkedin Youtube Reddit Github
  • Product
  • Login
  • Pricing
  • Editions
  • For Partners
  • Partner Program
  • Contributor Program
  • Affiliate Program
  • Plesk University
  • Company
  • Blog
  • Careers
  • Events
  • About Plesk
  • Our Brand
  • Resources
  • User and Admin guides
  • Help Center
  • Migrate to Plesk
  • Contact Us
  • Hosting Wiki
  • Forum
  • Legal
  • Legal
  • Privacy Policy
  • Imprint

© 2025 WebPros International GmbH

Part of the WebPros®  Family