File: parser_info.rb

package info (click to toggle)
ruby-mail 2.6.4%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,256 kB
  • ctags: 1,327
  • sloc: ruby: 44,678; makefile: 3
file content (61 lines) | stat: -rw-r--r-- 1,389 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module Mail
  module Parsers
    module Ragel
      ACTIONS = [
       :addr_spec,
       :address_e,
       :address_s,
       :angle_addr_s,
       :comment_e,
       :comment_s,
       :ctime_date_e,
       :ctime_date_s,
       :date_e,
       :date_s,
       :disp_type_e,
       :disp_type_s,
       :domain_e,
       :domain_s,
       :encoding_e,
       :encoding_s,
       :group_name_e,
       :group_name_s,
       :local_dot_atom_e,
       :local_dot_atom_pre_comment_e,
       :local_dot_atom_s,
       :local_quoted_string_e,
       :main_type_e,
       :main_type_s,
       :major_digits_e,
       :major_digits_s,
       :minor_digits_e,
       :minor_digits_s,
       :msg_id_e,
       :msg_id_s,
       :obs_domain_list_e,
       :obs_domain_list_s,
       :param_attr_e,
       :param_attr_s,
       :param_val_e,
       :param_val_s,
       :phrase_e,
       :phrase_s,
       :qstr_e,
       :qstr_s,
       :received_tokens_e,
       :received_tokens_s,
       :sub_type_e,
       :sub_type_s,
       :time_e,
       :time_s,
       :token_string_e,
       :token_string_s
      ]

      FIELD_PARSERS = %w[ address_lists phrase_lists
                          date_time received message_ids envelope_from
                          mime_version content_type content_disposition
                          content_transfer_encoding content_location ]
    end
  end
end