Class: TMail::EncryptedHeader

Inherits:
StructuredHeader show all
Defined in:
lib/tmail/header.rb

Constant Summary collapse

PARSE_TYPE =
:ENCRYPTED

Constants inherited from HeaderField

HeaderField::FNAME_TO_CLASS

Constants included from TextUtils

TextUtils::ATOM_UNSAFE, TextUtils::CONTROL_CHAR, TextUtils::MESSAGE_ID, TextUtils::MIME_ENCODED, TextUtils::MONTH, TextUtils::NKF_FLAGS, TextUtils::PHRASE_UNSAFE, TextUtils::RFC2231_ENCODED, TextUtils::TOKEN_UNSAFE, TextUtils::WDAY, TextUtils::ZONESTR_TABLE

Instance Method Summary collapse

Methods inherited from StructuredHeader

#comments

Methods inherited from HeaderField

#accept, #body, #body=, #empty?, #illegal?, #initialize, #inspect, internal_new, new, new_from_port, newobj

Methods included from StrategyInterface

#accept_strategy, create_dest, #decoded, #encoded

Methods included from TextUtils

#atom_safe?, #decode_RFC2231, #decode_params, #join_domain, #message_id?, #mime_encoded?, #quote_atom, #quote_boundary, #quote_phrase, #quote_token, #time2str, #timezone_string_to_unixtime, #to_kcode, #token_safe?, #unquote

Constructor Details

This class inherits a constructor from TMail::HeaderField

Instance Method Details

#encrypterObject



620
621
622
623
# File 'lib/tmail/header.rb', line 620

def encrypter
  ensure_parsed
  @encrypter
end

#encrypter=(arg) ⇒ Object



625
626
627
628
# File 'lib/tmail/header.rb', line 625

def encrypter=( arg )
  ensure_parsed
  @encrypter = arg
end

#keywordObject



630
631
632
633
# File 'lib/tmail/header.rb', line 630

def keyword
  ensure_parsed
  @keyword
end

#keyword=(arg) ⇒ Object



635
636
637
638
# File 'lib/tmail/header.rb', line 635

def keyword=( arg )
  ensure_parsed
  @keyword = arg
end