Compare commits
2 Commits
f29265fe8b
...
1beab72cde
Author | SHA1 | Date | |
---|---|---|---|
1beab72cde | |||
9cba4f7daf |
@ -559,9 +559,9 @@ render state
|
|||||||
|
|
||||||
, Bulma.hr
|
, Bulma.hr
|
||||||
, Bulma.div_content [Bulma.explanation Explanations.dmarc_adkim]
|
, Bulma.div_content [Bulma.explanation Explanations.dmarc_adkim]
|
||||||
, Bulma.selection_field "idDMARCadkim" "Consistency Policy for DKIM" DMARC_adkim DMARC.consistency_policies_txt_dkim (maybe "-" show state.dmarc.adkim)
|
, Bulma.selection_field "idDMARCadkim" "Consistency Policy for DKIM" DMARC_adkim DMARC.consistency_policies_txt (maybe "-" show state.dmarc.adkim)
|
||||||
, Bulma.div_content [Bulma.explanation Explanations.dmarc_aspf]
|
, Bulma.div_content [Bulma.explanation Explanations.dmarc_aspf]
|
||||||
, Bulma.selection_field "idDMARCaspf" "Consistency Policy for SPF" DMARC_aspf DMARC.consistency_policies_txt_spf (maybe "-" show state.dmarc.aspf)
|
, Bulma.selection_field "idDMARCaspf" "Consistency Policy for SPF" DMARC_aspf DMARC.consistency_policies_txt (maybe "-" show state.dmarc.aspf)
|
||||||
|
|
||||||
, Bulma.hr
|
, Bulma.hr
|
||||||
, Bulma.div_content [Bulma.explanation Explanations.dmarc_pct]
|
, Bulma.div_content [Bulma.explanation Explanations.dmarc_pct]
|
||||||
@ -650,7 +650,8 @@ handleAction = case _ of
|
|||||||
Just rr -> do
|
Just rr -> do
|
||||||
H.modify_ _ { _currentRR = rr }
|
H.modify_ _ { _currentRR = rr }
|
||||||
_ <- case rr.rrtype of
|
_ <- case rr.rrtype of
|
||||||
"DKIM" -> H.modify_ _ { dkim = fromMaybe DKIM.emptyDKIMRR rr.dkim }
|
"DKIM" -> H.modify_ _ { dkim = fromMaybe DKIM.emptyDKIMRR rr.dkim }
|
||||||
|
"DMARC" -> H.modify_ _ { dmarc = fromMaybe DMARC.emptyDMARCRR rr.dmarc }
|
||||||
_ -> pure unit
|
_ -> pure unit
|
||||||
H.modify_ _ { rr_modal = UpdateRRModal }
|
H.modify_ _ { rr_modal = UpdateRRModal }
|
||||||
|
|
||||||
|
@ -164,21 +164,13 @@ data ConsistencyPolicy
|
|||||||
consistency_policies :: Array ConsistencyPolicy
|
consistency_policies :: Array ConsistencyPolicy
|
||||||
consistency_policies = [Strict, Relaxed]
|
consistency_policies = [Strict, Relaxed]
|
||||||
|
|
||||||
consistency_policies_txt_spf :: Array String
|
consistency_policies_txt :: Array String
|
||||||
consistency_policies_txt_spf
|
consistency_policies_txt
|
||||||
= [ "Do not provide policy advice"
|
= [ "Do not provide policy advice"
|
||||||
, "Strict: identical domains"
|
, "Strict"
|
||||||
, "Relaxed: same organizational domain"
|
, "Relaxed"
|
||||||
]
|
]
|
||||||
|
|
||||||
consistency_policies_txt_dkim :: Array String
|
|
||||||
consistency_policies_txt_dkim
|
|
||||||
= [ "Do not provide policy advice"
|
|
||||||
, "Strict: same domain"
|
|
||||||
, "Relaxed: same organizational domain"
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
-- | Codec for just encoding a single value of type `ConsistencyPolicy`.
|
-- | Codec for just encoding a single value of type `ConsistencyPolicy`.
|
||||||
codecConsistencyPolicy :: CA.JsonCodec ConsistencyPolicy
|
codecConsistencyPolicy :: CA.JsonCodec ConsistencyPolicy
|
||||||
codecConsistencyPolicy
|
codecConsistencyPolicy
|
||||||
|
Loading…
Reference in New Issue
Block a user