authVerdict converts the domain verdict to its wire view (nil-safe).
(r *emailauth.Result)
| 256 | |
| 257 | // authVerdict converts the domain verdict to its wire view (nil-safe). |
| 258 | func authVerdict(r *emailauth.Result) *AuthVerdict { |
| 259 | if r == nil { |
| 260 | return nil |
| 261 | } |
| 262 | v := AuthVerdict(*r) |
| 263 | return &v |
| 264 | } |
| 265 | |
| 266 | func messageSummaryFromIdentity(m identity.Message) MessageSummaryView { |
| 267 | s := MessageSummaryView{ |
no test coverage detected