mirror of
https://github.com/mgeeky/decode-spam-headers.git
synced 2025-09-06 20:02:54 +02:00
Attempted to fix issues/6
This commit is contained in:
@ -4387,9 +4387,15 @@ Src: https://www.cisco.com/c/en/us/td/docs/security/esa/esa11-1/user_guide/b_ESA
|
||||
m = re.search(r'<?([^<@\s]+)@([^\s]+)>?', value)
|
||||
domain = ''
|
||||
|
||||
if not m:
|
||||
return []
|
||||
|
||||
if m and len(self.received_path) < 3:
|
||||
return []
|
||||
|
||||
if len(m.groups()) < 2:
|
||||
return []
|
||||
|
||||
username = m.group(1)
|
||||
domain = m.group(2)
|
||||
email = f'{username}@{domain}'
|
||||
|
Reference in New Issue
Block a user