Sha256: 0b7aca22800142dbcffcc3e5fb0fb1f44b3593212bfc54c1983fd511ba2bb842

Contents?: true

Size: 321 Bytes

Versions: 5

Compression:

Stored size: 321 Bytes

Contents

module Mail
  grammar ContentTransferEncoding

    include RFC2822
    include RFC2045

    rule primary
      CFWS encoding CFWS ";"? CFWS
    end
    
    rule encoding
      "7bits" / "8bits" /
      "7bit" / "8bit" / "binary" / "quoted-printable" / "base64" /
      ietf_token / custom_x_token
    end
    
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
mail-2.5.5 lib/mail/parsers/content_transfer_encoding.treetop
mail-2.5.5.rc1 lib/mail/parsers/content_transfer_encoding.treetop
challah-1.0.0 vendor/bundle/gems/mail-2.5.4/lib/mail/parsers/content_transfer_encoding.treetop
swipe-rails-0.0.5 vendor/bundle/gems/mail-2.5.4/lib/mail/parsers/content_transfer_encoding.treetop
mail-2.5.4 lib/mail/parsers/content_transfer_encoding.treetop