Author: norman
Date: Thu Feb 17 07:48:28 2011
New Revision: 1071533
URL: http://svn.apache.org/viewvc?rev=1071533&view=rev
Log:
Add concrete implementation for MailboxQuota matching. Thanks Barry. See
JAMES-1196
Added:
james/server/trunk/mailets/src/main/java/org/apache/james/transport/matchers/MailboxQuotaFixed.java
Added:
james/server/trunk/mailets/src/main/java/org/apache/james/transport/matchers/MailboxQuotaFixed.java
URL:
http://svn.apache.org/viewvc/james/server/trunk/mailets/src/main/java/org/apache/james/transport/matchers/MailboxQuotaFixed.java?rev=1071533&view=auto
==============================================================================
---
james/server/trunk/mailets/src/main/java/org/apache/james/transport/matchers/MailboxQuotaFixed.java
(added)
+++
james/server/trunk/mailets/src/main/java/org/apache/james/transport/matchers/MailboxQuotaFixed.java
Thu Feb 17 07:48:28 2011
@@ -0,0 +1,43 @@
+/****************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one *
+ * or more contributor license agreements. See the NOTICE file *
+ * distributed with this work for additional information *
+ * regarding copyright ownership. The ASF licenses this file *
+ * to you under the Apache License, Version 2.0 (the *
+ * "License"); you may not use this file except in compliance *
+ * with the License. You may obtain a copy of the License at *
+ * *
+ * http://www.apache.org/licenses/LICENSE-2.0 *
+ * *
+ * Unless required by applicable law or agreed to in writing, *
+ * software distributed under the License is distributed on an *
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
+ * KIND, either express or implied. See the License for the *
+ * specific language governing permissions and limitations *
+ * under the License. *
+ ****************************************************************/
+package org.apache.james.transport.matchers;
+
+import javax.mail.MessagingException;
+
+import org.apache.mailet.Mail;
+import org.apache.mailet.MailAddress;
+import org.apache.mailet.Matcher;
+
+/**
+ * Matcher which can be used to set a quota for users Mailbox. This {@link
Matcher} need to
+ * recalculate the used space of users mailbox on every call. So use it with
caution!
+ *
+ *
+ */
+public class MailboxQuotaFixed extends AbstractStorageQuota {
+
+ /*
+ * (non-Javadoc)
+ * @see
org.apache.james.transport.matchers.AbstractQuotaMatcher#getQuota(org.apache.mailet.MailAddress,
org.apache.mailet.Mail)
+ */
+ protected long getQuota(MailAddress arg0, Mail arg1) throws
MessagingException {
+ return parseQuota(this.getCondition());
+ }
+
+}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]