Class: TMail::ReceivedHeader

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

Constant Summary collapse

PARSE_TYPE =
:RECEIVED

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_phrase, #quote_token, #time2str, #timezone_string_to_unixtime, #to_kcode, #token_safe?

Constructor Details

This class inherits a constructor from TMail::HeaderField

Instance Method Details

#_forObject



489
490
491
492
# File 'lib/action_mailer/vendor/tmail/header.rb', line 489

def _for
  ensure_parsed
  @_for
end

#_for=(arg) ⇒ Object



494
495
496
497
# File 'lib/action_mailer/vendor/tmail/header.rb', line 494

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

#byObject



454
455
456
457
# File 'lib/action_mailer/vendor/tmail/header.rb', line 454

def by
  ensure_parsed
  @by
end

#by=(arg) ⇒ Object



459
460
461
462
# File 'lib/action_mailer/vendor/tmail/header.rb', line 459

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

#dateObject



499
500
501
502
# File 'lib/action_mailer/vendor/tmail/header.rb', line 499

def date
  ensure_parsed
  @date
end

#date=(arg) ⇒ Object



504
505
506
507
# File 'lib/action_mailer/vendor/tmail/header.rb', line 504

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

#fromObject



444
445
446
447
# File 'lib/action_mailer/vendor/tmail/header.rb', line 444

def from
  ensure_parsed
  @from
end

#from=(arg) ⇒ Object



449
450
451
452
# File 'lib/action_mailer/vendor/tmail/header.rb', line 449

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

#idObject



479
480
481
482
# File 'lib/action_mailer/vendor/tmail/header.rb', line 479

def id
  ensure_parsed
  @id
end

#id=(arg) ⇒ Object



484
485
486
487
# File 'lib/action_mailer/vendor/tmail/header.rb', line 484

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

#viaObject



464
465
466
467
# File 'lib/action_mailer/vendor/tmail/header.rb', line 464

def via
  ensure_parsed
  @via
end

#via=(arg) ⇒ Object



469
470
471
472
# File 'lib/action_mailer/vendor/tmail/header.rb', line 469

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

#withObject



474
475
476
477
# File 'lib/action_mailer/vendor/tmail/header.rb', line 474

def with
  ensure_parsed
  @with
end