Class: MailAuth::Signature
- Inherits:
-
Data
- Object
- Data
- MailAuth::Signature
- Defined in:
- lib/mailauth/result.rb
Overview
One per DKIM-Signature header, whatever each one's fate.
Instance Attribute Summary collapse
-
#algorithm ⇒ Object
readonly
Returns the value of attribute algorithm.
-
#aligned ⇒ Object
readonly
Returns the value of attribute aligned.
-
#canonicalization ⇒ Object
readonly
Returns the value of attribute canonicalization.
-
#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.
-
#under_sized ⇒ Object
readonly
Returns the value of attribute under_sized.
Instance Method Summary collapse
-
#initialize(status:, domain: nil, selector: nil, algorithm: nil, canonicalization: nil, comment: nil, aligned: false, under_sized: nil) ⇒ Signature
constructor
A new instance of Signature.
Constructor Details
#initialize(status:, domain: nil, selector: nil, algorithm: nil, canonicalization: nil, comment: nil, aligned: false, under_sized: nil) ⇒ Signature
Returns a new instance of Signature.
30 31 32 |
# File 'lib/mailauth/result.rb', line 30 def initialize(status:, domain: nil, selector: nil, algorithm: nil, canonicalization: nil, comment: nil, aligned: false, under_sized: nil) super end |
Instance Attribute Details
#algorithm ⇒ Object (readonly)
Returns the value of attribute algorithm
29 30 31 |
# File 'lib/mailauth/result.rb', line 29 def algorithm @algorithm end |
#aligned ⇒ Object (readonly)
Returns the value of attribute aligned
29 30 31 |
# File 'lib/mailauth/result.rb', line 29 def aligned @aligned end |
#canonicalization ⇒ Object (readonly)
Returns the value of attribute canonicalization
29 30 31 |
# File 'lib/mailauth/result.rb', line 29 def canonicalization @canonicalization end |
#comment ⇒ Object (readonly)
Returns the value of attribute comment
29 30 31 |
# File 'lib/mailauth/result.rb', line 29 def comment @comment end |
#domain ⇒ Object (readonly)
Returns the value of attribute domain
29 30 31 |
# File 'lib/mailauth/result.rb', line 29 def domain @domain end |
#selector ⇒ Object (readonly)
Returns the value of attribute selector
29 30 31 |
# File 'lib/mailauth/result.rb', line 29 def selector @selector end |
#status ⇒ Object (readonly)
Returns the value of attribute status
29 30 31 |
# File 'lib/mailauth/result.rb', line 29 def status @status end |
#under_sized ⇒ Object (readonly)
Returns the value of attribute under_sized
29 30 31 |
# File 'lib/mailauth/result.rb', line 29 def under_sized @under_sized end |