Class TMail::ReceivedHeader
In: lib/tmail/header.rb
Parent: StructuredHeader

Methods

_for   _for=   by   by=   date   date=   from   from=   id   id=   via   via=   with  

Constants

PARSE_TYPE = :RECEIVED

Public Instance methods

[Source]

# File lib/tmail/header.rb, line 491
    def _for
      ensure_parsed
      @_for
    end

[Source]

# File lib/tmail/header.rb, line 496
    def _for=(arg)
      ensure_parsed
      @_for = arg
    end

[Source]

# File lib/tmail/header.rb, line 456
    def by
      ensure_parsed
      @by
    end

[Source]

# File lib/tmail/header.rb, line 461
    def by=(arg)
      ensure_parsed
      @by = arg
    end

[Source]

# File lib/tmail/header.rb, line 501
    def date
      ensure_parsed
      @date
    end

[Source]

# File lib/tmail/header.rb, line 506
    def date=(arg)
      ensure_parsed
      @date = arg
    end

[Source]

# File lib/tmail/header.rb, line 446
    def from
      ensure_parsed
      @from
    end

[Source]

# File lib/tmail/header.rb, line 451
    def from=(arg)
      ensure_parsed
      @from = arg
    end

[Source]

# File lib/tmail/header.rb, line 481
    def id
      ensure_parsed
      @id
    end

[Source]

# File lib/tmail/header.rb, line 486
    def id=(arg)
      ensure_parsed
      @id = arg
    end

[Source]

# File lib/tmail/header.rb, line 466
    def via
      ensure_parsed
      @via
    end

[Source]

# File lib/tmail/header.rb, line 471
    def via=(arg)
      ensure_parsed
      @via = arg
    end

[Source]

# File lib/tmail/header.rb, line 476
    def with
      ensure_parsed
      @with
    end

[Validate]