Script to enable SpamAssassin for new accounts
By default (if enabled), DA gives the User the option to enable spamassassin, but it is not turned on by default.
The above script can be used to also enable spamassassin for all existing accounts. You can create another simple script to do it called (for example) spam.sh with the following code:
#!/bin/sh
for i in `ls /usr/local/directadmin/data/users`; do
{
username=$i spam=ON /usr/local/directadmin/scripts/custom/user_create_post.sh
};
done;
exit 0;
for i in `ls /usr/local/directadmin/data/users`; do
{
username=$i spam=ON /usr/local/directadmin/scripts/custom/user_create_post.sh
};
done;
exit 0;
Save this new spam.sh script, chmod it to 755, and run it once.
Leave a Reply
You must be logged in to post a comment.