[CalendarServer-changes] [5878] CalendarServer/trunk/twistedcaldav/scheduling/scheduler.py

source_changes at macosforge.org source_changes at macosforge.org
Tue Jul 13 11:18:32 PDT 2010


Revision: 5878
          http://trac.macosforge.org/projects/calendarserver/changeset/5878
Author:   cdaboo at apple.com
Date:     2010-07-13 11:18:32 -0700 (Tue, 13 Jul 2010)
Log Message:
-----------
Allow a limit of zero to mean "no limit".

Modified Paths:
--------------
    CalendarServer/trunk/twistedcaldav/scheduling/scheduler.py

Modified: CalendarServer/trunk/twistedcaldav/scheduling/scheduler.py
===================================================================
--- CalendarServer/trunk/twistedcaldav/scheduling/scheduler.py	2010-07-13 18:17:02 UTC (rev 5877)
+++ CalendarServer/trunk/twistedcaldav/scheduling/scheduler.py	2010-07-13 18:18:32 UTC (rev 5878)
@@ -397,7 +397,7 @@
         for ctr, recipient in enumerate(self.recipients):
     
             # Check for freebusy limit
-            if freebusy and ctr >= config.Scheduling.Options.LimitFreeBusyAttendees:
+            if freebusy and config.Scheduling.Options.LimitFreeBusyAttendees and ctr >= config.Scheduling.Options.LimitFreeBusyAttendees:
                 err = HTTPError(ErrorResponse(responsecode.NOT_FOUND, (caldav_namespace, "recipient-limit")))
                 responses.add(recipient.cuaddr, Failure(exc_value=err), reqstatus=iTIPRequestStatus.SERVICE_UNAVAILABLE)
                 continue
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20100713/243be39f/attachment.html>


More information about the calendarserver-changes mailing list