Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vcard: Fix whitespace handling in line cont's #9637

Merged
merged 3 commits into from
Sep 18, 2024

Commits on Sep 14, 2024

  1. vcard: Fix whitespace handling in line cont's

    Previously, multiple whitespace characters at the start of a
    continuation line would all be dropped, instead of only the first one.
    
    Also,
     - restrict line continuation characters to SPACE and TAB.
    
    Note that, like before, this identifies the CR (`\r`) character with the
    empty string, and thereby notably does not require a CRLF (`\r\n`)
    sequence (which is mandated by RFCs 2426, 2425) for line termination
    (i.e., `\n` suffices).
    
    Fixes: Bug 1 of issue roundcube#9593.
    respiranto committed Sep 14, 2024
    Configuration menu
    Copy the full SHA
    1fb1758 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2024

  1. Configuration menu
    Copy the full SHA
    8eae2c3 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2024

  1. Fix coding style

    respiranto committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    6999dfa View commit details
    Browse the repository at this point in the history