We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f7ea5 commit f413273Copy full SHA for f413273
mlp/main.py
@@ -271,9 +271,9 @@ async def import_log(logfile: str) -> Dict[str, PostfixMessage]:
271
# print(checking_mailto)
272
# print(msg)
273
# 27.05.2024 need tests added 'or' below to compare full email or only local part
274
- if '@' in checking_mailto:
275
- checking_mailto = checking_mailto.split('@')[0]
276
- if checking_mailto in msg:
+ '''if '@' in checking_mailto:
+ checking_mailto = checking_mailto.split('@')[0]'''
+ if checking_mailto in msg or checking_mailto.split('@')[0] in msg:
277
same_qid = qid
278
counter += 1
279
# don't add email duplicates
0 commit comments