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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
# frozen_string_literal: true
require 'mail/utilities'
require 'mail/parser_tools'
begin
original_verbose, $VERBOSE = $VERBOSE, nil
%%{
machine envelope_from;
alphtype int;
# Address
action address_s { address_s = p }
action address_e { envelope_from.address = chars(data, address_s, p-1).rstrip }
# ctime_date
action ctime_date_s { ctime_date_s = p }
action ctime_date_e { envelope_from.ctime_date = chars(data, ctime_date_s, p-1) }
# No-op actions
action angle_addr_s {}
action comment_e {}
action comment_s {}
action domain_e {}
action domain_s {}
action local_dot_atom_e {}
action local_dot_atom_pre_comment_e {}
action local_dot_atom_pre_comment_s {}
action local_dot_atom_s {}
action phrase_s {}
action phrase_e {}
action qstr_e {}
action qstr_s {}
action date_s {}
action date_e {}
action time_s {}
action time_e {}
action local_quoted_string_s {}
action local_quoted_string_e {}
action obs_domain_list_s {}
action obs_domain_list_e {}
action group_name_s {}
action group_name_e {}
action msg_id_s {}
action msg_id_e {}
action received_tokens_s {}
action received_tokens_e {}
include rfc5322 "rfc5322.rl";
main := envelope_from;
}%%
module Mail::Parsers
module EnvelopeFromParser
extend Mail::ParserTools
EnvelopeFromStruct = Struct.new(:address, :ctime_date, :error)
%%write data noprefix;
def self.parse(data)
data = data.dup.force_encoding(Encoding::ASCII_8BIT) if data.respond_to?(:force_encoding)
envelope_from = EnvelopeFromStruct.new
return envelope_from if Mail::Utilities.blank?(data)
# Parser state
address_s = ctime_date_s = nil
# 5.1 Variables Used by Ragel
p = 0
eof = pe = data.length
stack = []
%%write init;
%%write exec;
if p != eof || cs < %%{ write first_final; }%%
raise Mail::Field::IncompleteParseError.new(Mail::EnvelopeFromElement, data, p)
end
envelope_from
end
end
end
ensure
$VERBOSE = original_verbose
end
|