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.
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?