You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The Mailer Responder checks the tags list for the recipient mail address.
In line 43 it checks for tags starting with "mail:" but with TheHive 4.0 the tags are using equal signs and not colons: "mail="
When using colons instead of equal signs in TheHive 4.0 it's automatically converted into an equal sign.
Describe the bug
The Mailer Responder checks the tags list for the recipient mail address.
In line 43 it checks for tags starting with "mail:" but with TheHive 4.0 the tags are using equal signs and not colons: "mail="
When using colons instead of equal signs in TheHive 4.0 it's automatically converted into an equal sign.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Normally the email tag should be detected by the responder python script.
Complementary information


Before clicking on the green hook:
After clicking:
Work environment
Possible solutions
Change Line 43 from
t.startswith("mail:")
to
t.startswith("mail=")
Additional context
Could not test with TheHive 3.x.
The text was updated successfully, but these errors were encountered: