Class: Mail::MessageIdField
- Inherits:
-
StructuredField
- Object
- StructuredField
- Mail::MessageIdField
- Includes:
- CommonMessageId
- Defined in:
- lib/mail/fields/message_id_field.rb
Constant Summary collapse
- FIELD_NAME =
'message-id'- CAPITALIZED_FIELD =
'Message-ID'
Constants included from Utilities
Utilities::CRLF, Utilities::LF, Utilities::TO_CRLF_REGEX
Constants included from Constants
Constants::ASTERISK, Constants::ATOM_UNSAFE, Constants::B_VALUES, Constants::CAPITAL_M, Constants::COLON, Constants::CONTROL_CHAR, Constants::CR, Constants::CRLF, Constants::CR_ENCODED, Constants::EMPTY, Constants::ENCODED_VALUE, Constants::EQUAL_LF, Constants::FIELD_BODY, Constants::FIELD_LINE, Constants::FIELD_PREFIX, Constants::FIELD_SPLIT, Constants::FULL_ENCODED_VALUE, Constants::FWS, Constants::HEADER_LINE, Constants::HEADER_SPLIT, Constants::HYPHEN, Constants::LF, Constants::LF_ENCODED, Constants::NULL_SENDER, Constants::PHRASE_UNSAFE, Constants::QP_SAFE, Constants::QP_UNSAFE, Constants::Q_VALUES, Constants::SPACE, Constants::TEXT, Constants::TOKEN_UNSAFE, Constants::UNDERSCORE, Constants::WSP
Instance Method Summary collapse
- #decoded ⇒ Object
- #encoded ⇒ Object
-
#initialize(value = nil, charset = 'utf-8') ⇒ MessageIdField
constructor
A new instance of MessageIdField.
- #message_ids ⇒ Object
- #name ⇒ Object
- #to_s ⇒ Object
Methods included from CommonMessageId
#default, #element, #message_id, #parse
Methods inherited from StructuredField
#charset, #charset=, #default, #errors
Methods included from Utilities
#atom_safe?, binary_unsafe_to_crlf, binary_unsafe_to_lf, blank?, #bracket, #capitalize_field, #constantize, #dasherize, #dquote, #escape_paren, #map_lines, #map_with_index, #match_to_s, #paren, #quote_atom, #quote_phrase, #quote_token, safe_for_line_ending_conversion?, to_crlf, to_lf, #token_safe?, #unbracket, #underscoreize, unescape, #unparen, unquote, #uri_escape, #uri_parser, #uri_unescape
Methods included from CommonField
#default, #field_length, #name=, #responsible_for?, #value, #value=
Constructor Details
#initialize(value = nil, charset = 'utf-8') ⇒ MessageIdField
Returns a new instance of MessageIdField.
42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/mail/fields/message_id_field.rb', line 42 def initialize(value = nil, charset = 'utf-8') self.charset = charset @uniq = 1 if Utilities.blank?(value) self.name = CAPITALIZED_FIELD self.value = else super(CAPITALIZED_FIELD, value, charset) end self.parse self end |
Instance Method Details
#decoded ⇒ Object
72 73 74 |
# File 'lib/mail/fields/message_id_field.rb', line 72 def decoded do_decode end |
#encoded ⇒ Object
68 69 70 |
# File 'lib/mail/fields/message_id_field.rb', line 68 def encoded do_encode(CAPITALIZED_FIELD) end |
#message_ids ⇒ Object
60 61 62 |
# File 'lib/mail/fields/message_id_field.rb', line 60 def [] end |
#name ⇒ Object
56 57 58 |
# File 'lib/mail/fields/message_id_field.rb', line 56 def name 'Message-ID' end |
#to_s ⇒ Object
64 65 66 |
# File 'lib/mail/fields/message_id_field.rb', line 64 def to_s "<#{message_id}>" end |