Okay, I think I understand; it sends an email to the reseller and to the new user. It does NOT send to you. I just tried it. Sorry for the incorrect information.
Perhaps this should be a feature request; I've moved the thread to the Feature Request subforum.
If you want admin to be emailed for any user created on the system, created:
/usr/local/directadmin/scripts/custom/user_create_post.sh
In it, put:
Code:
#!/bin/sh
echo "user $username with $domain was created by $creator" | mail -s "$creator created $username on `hostname`" [b][email protected][/b]
exit 0;