Search Our Database

How to fix cPanel email error : has exceeded the max defers and failures per hour (5/5)

Last updated on |
by

Introduction

This guide addresses the error where a domain exceeds the maximum allowed email defers and failures per hour in a cPanel server. This restriction is enforced to prevent excessive delivery attempts to invalid or unresponsive recipients, which can impact server reputation and deliverability.

When triggered, the server blocks further email sending for that domain until the defer counter resets. This issue commonly occurs when outgoing messages frequently bounce, such as due to incorrect recipient addresses or blacklisted destination mail servers.

A typical bounce-back error message is:

Domain example.com has exceeded the max defers and failures per hour (5/5 (100%)) allowed. Message discarded.

This article provides steps to clear the defer counters and restart Exim, allowing mail delivery to resume. Administrators should also review the root cause of excessive defers to prevent recurrence.

Prerequisites

  • SSH access to the cPanel server

  • Root privileges

  • Affected domain name

 

Step-by-step Guide

Step 1: Connect to the Server via SSH

Access the server as the root user:

ssh root@your_server_ip

 

Step 2: Navigate to the Email Send Limits Directory

Change to the directory tracking the domain’s email defer data:

cd /var/cpanel/email_send_limits/track/your_domain_name

Replace your_domain_name with the actual domain (e.g., example.com).

To view the tracked files:

ls -la

 

Step 3: Clear the Defer and Failure Files

Remove all files in the tracking directory to reset the counters:

rm -f *

 

Step 4: Restart the Exim Mail Service

Restart Exim to apply changes:

service exim restart

 

Conclusion

By clearing the tracked defer files and restarting Exim, the domain’s email-sending ability is restored. However, the underlying cause of repeated failures—such as misconfigured email forms, invalid recipients, or blacklisted destinations—should be investigated to avoid future blocks.

Should you have any inquiries about the guidelines, please feel free to open a ticket through your portal account or contact us at support@ipserverone.com. We’ll be happy to assist you further.