Wouter van der Schagt wrote:
Guys, I have a few questions
- Does modifying vlimits.default file require a recompile?

No but existing accounts will not have their limits changed.

- How to change all quota's from all popboxes?

vmoduser -q 20M domain.com

If you have multiple domains use a bash script

for domain in `cut -d ":" /var/qmail/users/assign -f 2 | sort | uniq | egrep -v "^\."; do vmoduser -q 20M $domain; done;

- Is there an Easy way to determine size of popboxen (list all)


Again a bash script but vpopbull and vdominfo are not giving me what I want. I'll let someone else add the domain name.

for domain in `cut -d ":" /var/qmail/users/assign -f 2 | sort | uniq | egrep -v "^\."`;do vuserinfo -nQ -D $domain; done;


HTH,

Rick

Reply via email to