Re: looking for warn quota tools

2002-06-13 Thread Terry Lambert
David Taylor wrote: FWIW: It's kind of a dumb idea to send email warning about a condition which is caused by having too much email. We did this on the InterJet, and it was actually a pretty dumb thing to do; you end up with a recursive problem that's unsolvable -- you basically have

Re: looking for warn quota tools

2002-06-13 Thread Terry Lambert
Terry Lambert wrote: For this to work, you would have to serialize access to maildrops by receiver SMTPs (this is an intractable problem), AND you would need to reject mail sent without the SIZE extension, or mail whose actual size exceeded that specified by the SIZE extension (you are not

looking for warn quota tools

2002-06-11 Thread Paul S. Puth
Hi, I am looking for a tool that will email to the user if his/her account (more specifically email box) is approaching quota limit. I've searched everywhere for such a tool but to no avail. On Linux, there is a tool called warnquota that fits my need but I am running FreeBSD 4.5 -RELEASE so

Re: looking for warn quota tools

2002-06-11 Thread Robert Watson
I always just used the following script in the /etc/csh.login: #if (`quota | grep '\*'` != ) then # echo Warning: Quota Exceeded: # quota #endif Given that the output of the quota command is fairly parseable, a little bit of scripting or perl should do the trick. Robert N M Watson

Re: looking for warn quota tools

2002-06-11 Thread Paul S. Puth
Thank for the quick response, Robert. I fail to mention that this machine is strictly a mail server with over 10K+ accounts. Users cannot log into their shell account and they check email via POP/IMAP only. At 05:31 PM 6/11/2002 -0400, Robert Watson wrote: I always just used the following

Re: looking for warn quota tools

2002-06-11 Thread Terry Lambert
Paul S. Puth wrote: I am looking for a tool that will email to the user if his/her account (more specifically email box) is approaching quota limit. I've searched everywhere for such a tool but to no avail. On Linux, there is a tool called warnquota that fits my need but I am running