Suspend SMTP of a User

hmaddy

Verified User
Joined
Apr 17, 2019
Messages
290
How can i suspend smtp servvice of a particular user using terminal command. some clients or user are using the server for spamming. so how to block those users smtp outgoing services.
 
Hello,

You might install blockcracking from DirectAdmin:

- https://docs.directadmin.com/other-hosting-services/preventing-spam/outgoing-spam.html

and/or set the user to limit 1 email per day:

Code:
echo 1 > /etc/virtual/user_limit

where user_limit should be renamed to bob_limit for user account of bob
need to update only on this file
echo 1 > /etc/virtual/user_limit

or need to update like this

echo 1 > /etc/virtual/user1_limit

echo 1 > /etc/virtual/user2_limit

echo 1 > /etc/virtual/user3_limit

echo 1 > /etc/virtual/user4_limit
 
Back
Top