> how to set restriction at the mailbox size for file storage?

There isn't one built-in.  It is on the wish list.  Today, you can create a
matcher to check the quota:

        <mailet match="Quota" class="ToProcessor">
         <processor> overQuota </processor>
      </mailet>

That will send the message to the overQuota processor, along with the list
of recipients who are over quota.  You can keep the quota in a database
keyed by local user, or you can put a fixed limit, e.g., match="Quota=10MB".

        --- Noel


--
To unsubscribe, e-mail:   <mailto:james-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:james-user-help@;jakarta.apache.org>

Reply via email to