Class: MailAuth::ArcSeal

Inherits:
Data
  • Object
show all
Defined in:
lib/mailauth/result.rb

Overview

One ARC-Seal and one ARC-Message-Signature, reported apart because RFC 8617 places no requirement that a set sign both with the same domain or selector.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status:, domain: nil, selector: nil, algorithm: nil, comment: nil) ⇒ ArcSeal

Returns a new instance of ArcSeal.



52
53
54
# File 'lib/mailauth/result.rb', line 52

def initialize(status:, domain: nil, selector: nil, algorithm: nil, comment: nil)
  super
end

Instance Attribute Details

#algorithmObject (readonly)

Returns the value of attribute algorithm

Returns:

  • (Object)

    the current value of algorithm



51
52
53
# File 'lib/mailauth/result.rb', line 51

def algorithm
  @algorithm
end

#commentObject (readonly)

Returns the value of attribute comment

Returns:

  • (Object)

    the current value of comment



51
52
53
# File 'lib/mailauth/result.rb', line 51

def comment
  @comment
end

#domainObject (readonly)

Returns the value of attribute domain

Returns:

  • (Object)

    the current value of domain



51
52
53
# File 'lib/mailauth/result.rb', line 51

def domain
  @domain
end

#selectorObject (readonly)

Returns the value of attribute selector

Returns:

  • (Object)

    the current value of selector



51
52
53
# File 'lib/mailauth/result.rb', line 51

def selector
  @selector
end

#statusObject (readonly)

Returns the value of attribute status

Returns:

  • (Object)

    the current value of status



51
52
53
# File 'lib/mailauth/result.rb', line 51

def status
  @status
end