예제 #1
0
 def match(self, message):
     self.decoded_subject = get_decoded_subject(message)
     regexp = r' *create *:'
     return bool(re.match(regexp, self.decoded_subject.lower()))
예제 #2
0
 def match(self, message):
     self.decoded_subject = get_decoded_subject(message)
     self.ticket = self._ticket(message, self.decoded_subject)
     return bool(self.ticket)