~ar-python-hackers/authentication-results-python/trunk

« back to all changes in this revision

Viewing changes to authres/dmarc.py

  • Committer: Scott Kitterman
  • Date: 2015-03-10 02:19:33 UTC
  • Revision ID: scott@kitterman.com-20150310021933-mnenhdmfmkaf19bx
Add rrvs to 'all features'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# limitations under the License.
17
17
 
18
18
"""
19
 
authres extension module for the DMARC RFC 7489 authentication method.
 
19
authres extension module for the DMARC (draft-kucherawy-dmarc-base-01)
 
20
authentication method.
20
21
"""
21
22
 
22
23
#MODULE = 'authres'
23
24
 
24
25
__author__  = 'Scott Kitterman, Julian Mehnle'
25
26
__email__   = 'scott@kitterman.com'
 
27
__version__ = '0.800'
26
28
 
27
29
import authres.core
28
30
from authres.core import make_result_class_properties
29
31
 
30
32
class DMARCAuthenticationResult(authres.core.AuthenticationResult):
31
33
    """
32
 
    DMARC RFC 7489 result clause of an ``Authentication-Results`` header"""
 
34
    DMARC (draft-kucherawy-dmarc-base-01) result clause of an
 
35
    ``Authentication-Results`` header"""
33
36
 
34
37
    METHOD = 'dmarc'
35
38