/usr/lib/python2.7/dist-packages/kopano/restriction.py is in python-kopano 8.5.5-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | """
Part of the high-level python bindings for Kopano
Copyright 2016 - Kopano and its licensors (see LICENSE file for details)
"""
from MAPI.Struct import MAPIErrorNotFound
from MAPI.Util import TestRestriction
from .compat import repr as _repr
class Restriction(object):
"""Restriction class"""
def __init__(self, mapiobj=None):
self.mapiobj = mapiobj
def match(self, item):
try:
TestRestriction(self.mapiobj, item.mapiobj)
return True
except MAPIErrorNotFound:
return False
def __unicode__(self):
return u"Restriction()"
def __repr__(self):
return _repr(self)
|