change of quota of email users

outpernet

Verified User
Joined
May 26, 2003
Messages
251
a way to change the quota of email users. Now if you want to modify the quota you cant.

also if from admin panel we can setup an email to advise us all if a domain is created for our users or reseller will be very usefull coz qe hahve central dns.
 
Hello,

All accounts (except the system email account) have quotas associated with them. It's right there in the email table under "Password/Quota", just click "change".

If you want an email, just create a script to do it for you.
/usr/local/direcatdmin/scripts/custom/domain_create_post.sh

You shoud in theory be able to use php for that:
PHP:
#!/usr/local/bin/php
<?
mail ("[email protected]", "New domain created:".getenv('domain'), "Message notification that the new domain ".getenv('domain')." has been created.");
?>
Something like that would do the trick. See /usr/local/direcatdmin/scripts/custom/README for more info on how to use the custom scripts.

John
 
Back
Top