Class: MailAuth::ArcSeal
- Inherits:
-
Data
- Object
- Data
- MailAuth::ArcSeal
- 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
-
#algorithm ⇒ Object
readonly
Returns the value of attribute algorithm.
-
#comment ⇒ Object
readonly
Returns the value of attribute comment.
-
#domain ⇒ Object
readonly
Returns the value of attribute domain.
-
#selector ⇒ Object
readonly
Returns the value of attribute selector.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(status:, domain: nil, selector: nil, algorithm: nil, comment: nil) ⇒ ArcSeal
constructor
A new instance of ArcSeal.
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
#algorithm ⇒ Object (readonly)
Returns the value of attribute algorithm
51 52 53 |
# File 'lib/mailauth/result.rb', line 51 def algorithm @algorithm end |
#comment ⇒ Object (readonly)
Returns the value of attribute comment
51 52 53 |
# File 'lib/mailauth/result.rb', line 51 def comment @comment end |
#domain ⇒ Object (readonly)
Returns the value of attribute domain
51 52 53 |
# File 'lib/mailauth/result.rb', line 51 def domain @domain end |
#selector ⇒ Object (readonly)
Returns the value of attribute selector
51 52 53 |
# File 'lib/mailauth/result.rb', line 51 def selector @selector end |
#status ⇒ Object (readonly)
Returns the value of attribute status
51 52 53 |
# File 'lib/mailauth/result.rb', line 51 def status @status end |