Class: MailAuth::Result

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(spf:, dkim:, dmarc:, authentication_results:, arc: nil) ⇒ Result

Returns a new instance of Result.



96
97
98
# File 'lib/mailauth/result.rb', line 96

def initialize(spf:, dkim:, dmarc:, authentication_results:, arc: nil)
  super
end

Instance Attribute Details

#arcObject (readonly)

Returns the value of attribute arc

Returns:

  • (Object)

    the current value of arc



95
96
97
# File 'lib/mailauth/result.rb', line 95

def arc
  @arc
end

#authentication_resultsObject (readonly)

Returns the value of attribute authentication_results

Returns:

  • (Object)

    the current value of authentication_results



95
96
97
# File 'lib/mailauth/result.rb', line 95

def authentication_results
  @authentication_results
end

#dkimObject (readonly)

Returns the value of attribute dkim

Returns:

  • (Object)

    the current value of dkim



95
96
97
# File 'lib/mailauth/result.rb', line 95

def dkim
  @dkim
end

#dmarcObject (readonly)

Returns the value of attribute dmarc

Returns:

  • (Object)

    the current value of dmarc



95
96
97
# File 'lib/mailauth/result.rb', line 95

def dmarc
  @dmarc
end

#spfObject (readonly)

Returns the value of attribute spf

Returns:

  • (Object)

    the current value of spf



95
96
97
# File 'lib/mailauth/result.rb', line 95

def spf
  @spf
end