Drew Marshall wrote: > [...] Could some one tell me where I can find this or am I > supposed to make my own? If so is there and example that I can follow? > > Yes, make your own, it can do anything you want. Here is an example: #!/bin/bash PERCENT=$1 echo "Your mailbox is now $PERCENT% full." | /usr/sbin/sendmail "$USER" exit 0