POP3 RETR is missing dot-stuffing and CRLF termination #3
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
handle_retr (proxy_server.py:271) writes the raw body and then a "." terminator with no byte-stuffing.
RFC 1939 requires, for multi-line responses:
A message containing a line starting with "." (e.g. ".signature") or a body not ending in CRLF will truncate or corrupt the transfer.
Fix:
Acceptance: