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
However, in the function "process_marked_lines" in quotations.py, there is this code:
if re.match('[te]*f', markers):
return_flags[:] = [False, -1, -1]
return lines
This will return the whole email content as the reply without removing the "---- Forwarded message ----" and subsequent text.
Is this intended?
The text was updated successfully, but these errors were encountered:
hi, if my email content is like below:
"""reply
----- Forwarded message ----
some forwarded text"""
the markers will be "tefet".
However, in the function "process_marked_lines" in quotations.py, there is this code:
if re.match('[te]*f', markers):
return_flags[:] = [False, -1, -1]
return lines
This will return the whole email content as the reply without removing the "---- Forwarded message ----" and subsequent text.
Is this intended?
The text was updated successfully, but these errors were encountered: