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



508
509
510
511
# File 'lib/action_mailer/vendor/tmail/header.rb', line 508

def _for
  ensure_parsed
  @_for
end

#_for=(arg) ⇒ Object



513
514
515
516
# File 'lib/action_mailer/vendor/tmail/header.rb', line 513

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

#byObject



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

def by
  ensure_parsed
  @by
end

#by=(arg) ⇒ Object



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

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

#dateObject



518
519
520
521
# File 'lib/action_mailer/vendor/tmail/header.rb', line 518

def date
  ensure_parsed
  @date
end

#date=(arg) ⇒ Object



523
524
525
526
# File 'lib/action_mailer/vendor/tmail/header.rb', line 523

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

#fromObject



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

def from
  ensure_parsed
  @from
end

#from=(arg) ⇒ Object



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

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

#idObject



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

def id
  ensure_parsed
  @id
end

#id=(arg) ⇒ Object



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

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

#viaObject



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

def via
  ensure_parsed
  @via
end

#via=(arg) ⇒ Object



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

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

#withObject



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

def with
  ensure_parsed
  @with
end