Class: Mail::InReplyToField
- Inherits:
-
StructuredField
- Object
- StructuredField
- Mail::InReplyToField
- Includes:
- CommonMessageId
- Defined in:
- lib/mail/fields/in_reply_to_field.rb
Constant Summary collapse
- FIELD_NAME =
'in-reply-to'- CAPITALIZED_FIELD =
'In-Reply-To'
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::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') ⇒ InReplyToField
constructor
A new instance of InReplyToField.
Methods included from CommonMessageId
#default, #element, #message_id, #message_ids, #parse
Methods inherited from StructuredField
#charset, #charset=, #default, #errors
Methods included from Utilities
#atom_safe?, #bracket, #capitalize_field, #constantize, #dasherize, #dquote, #escape_paren, #map_lines, #map_with_index, #match_to_s, #paren, #quote_atom, #quote_phrase, #quote_token, #token_safe?, #unbracket, #underscoreize, #unparen, #unquote, #uri_escape, #uri_parser, #uri_unescape
Methods included from CommonField
#default, #field_length, #name, #name=, #responsible_for?, #to_s, #value, #value=
Constructor Details
#initialize(value = nil, charset = 'utf-8') ⇒ InReplyToField
Returns a new instance of InReplyToField.
39 40 41 42 43 44 45 |
# File 'lib/mail/fields/in_reply_to_field.rb', line 39 def initialize(value = nil, charset = 'utf-8') self.charset = charset value = value.join("\r\n\s") if value.is_a?(Array) super(CAPITALIZED_FIELD, strip_field(FIELD_NAME, value), charset) self.parse self end |