Skip to content
  • JediKev's avatar
    1a261690
    format: Mailto TLD Length · 1a261690
    JediKev authored
    This addresses an issue where the text formatter only allows 2-4
    characters in email domain TLDs. This causes an issue if you have a TLD
    with more than 4 characters, where the full email address will not be
    converted into the link. This increases the allowed characters to 2-63
    characters allowing all modern TLDs to be converted correctly. Why 63
    chars? Have a look at the 2.3.4 Size Limts section here:
    http://www.ietf.org/rfc/rfc1035.txt
    
    Example (using user@domain.testing):
    Before
    <a href="mailto:user@domain.test">user@domain.test</a>ing
    After
    <a href="mailto:user@domain.testing">user@domain.testing</a>
    1a261690
    format: Mailto TLD Length
    JediKev authored
    This addresses an issue where the text formatter only allows 2-4
    characters in email domain TLDs. This causes an issue if you have a TLD
    with more than 4 characters, where the full email address will not be
    converted into the link. This increases the allowed characters to 2-63
    characters allowing all modern TLDs to be converted correctly. Why 63
    chars? Have a look at the 2.3.4 Size Limts section here:
    http://www.ietf.org/rfc/rfc1035.txt
    
    Example (using user@domain.testing):
    Before
    <a href="mailto:user@domain.test">user@domain.test</a>ing
    After
    <a href="mailto:user@domain.testing">user@domain.testing</a>
Loading