SMTP Error (550)

Please send us the domain name you are trying to send email on.
OS and Version
Is this a new DA install or old?
Are you root AKA the admin of the Sever in question?
 
  • Like
Reactions: Aol
I have responded to your PM.

Based on the info you gave me you are using 3rd party email. You need to make sure the
"Use this server to handle my e-mails." is unchecked
and all the MX records are correct in that same box.
 
  • Like
Reactions: Aol
Please run in ssh as root
Code:
cd /usr/local/directadmin/custombuild
./build set_fastest
./build update
./build exim_conf
./build dovecot_conf
./build rewrite_confs

Lets see if this helps.
 
Please run in ssh as root
Code:
cd /usr/local/directadmin/custombuild
./build set_fastest
./build update
./build exim_conf
./build dovecot_conf
./build rewrite_confs

Lets see if this helps.
Okay. Let me try this
 
This actually isn't about anything external. The message "User account [email protected] has sent too many emails" occurs when you exceed the allocated outbound email quota in DirectAdmin. Specifically, the limits defined in either /etc/virtual/limit or /etc/virtual/mydomain.com/limit/support. The first one is defined in admin settings in DA, the second is set at user level when you create an email account.

This is all executed by code in /etc/exim.pl, executed as an ACL in exim.conf:

# If you've hit the limit, you can't send anymore. Requires exim.pl 17+
drop message = AUTH_TOO_MANY
condition = ${perl{auth_hit_limit_acl}}
authenticated = *

The AUTH_TOO_MANY value being defined in /etc/exim.strings.conf:

/etc/exim.strings.conf:AUTH_TOO_MANY=User account ${authenticated_id} has sent too many emails
 
Back
Top