Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SpfResult.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace Waher.Security.SPF
6{
10 public enum SpfResult
11 {
18 None,
19
24 Neutral,
25
30 Pass,
31
36 Fail,
37
43 SoftFail,
44
50 TemporaryError,
51
57 PermanentError
58 }
59}
SpfResult
Result of a SPF (Sender Policy Framework) evaluation.
Definition: SpfResult.cs:11