Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vistahigherlearning / logstash   deb

Repository URL to install this package:

/ opt / logstash / vendor / bundle / jruby / 1.9 / gems / mail-2.5.3 / lib / mail / parsers / content_transfer_encoding.treetop

module Mail
  grammar ContentTransferEncoding

    include RFC2822
    include RFC2045

    rule primary
      CFWS encoding CFWS ";"? CFWS
    end
    
    rule encoding
      ietf_token "s"? {
        def text_value
          ietf_token.text_value
        end
      } / custom_x_token
    end
    
  end
end