summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emailcanary/canary.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/emailcanary/canary.py b/emailcanary/canary.py
index e020349..aac6418 100644
--- a/emailcanary/canary.py
+++ b/emailcanary/canary.py
@@ -36,7 +36,7 @@ class Canary:
return self.db.get_missing_pongs(listAddress)
def processMessage(self, receipient, msg):
- match = re.match('Canary Email (.+)', msg['Subject'])
+ match = re.match('.*Canary Email (.+)', msg['Subject'])
if match:
chirpUUID = match.group(1)
now = datetime.datetime.now()