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

« back to all changes in this revision

Viewing changes to authres/__init__.py

  • Committer: Scott Kitterman
  • Date: 2016-12-11 05:52:42 UTC
  • Revision ID: scott@kitterman.com-20161211055242-molq08jlvoa07tj0
  + Add support for RFC 7601 use of SMTP auth with the mailfrom property

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""
19
19
Package for parsing ``Authentication-Results`` headers as defined in RFC
20
 
5451/7001/7601.  Optional support for authentication methods defined in RFCs
21
 
5617, 6008, 6212, and 7281.
 
20
5451/7001.  Optional support for authentication methods defined in RFCs 5617,
 
21
6008, 6212, and 7281.
22
22
 
23
23
Examples:
24
24
RFC 5451 B.2
94
94
 
95
95
__author__  = 'Julian Mehnle, Scott Kitterman'
96
96
__email__   = 'julian@mehnle.net'
97
 
__version__ = '1.0.1'
 
97
__version__ = '0.800'
98
98
 
99
99
import authres.core
100
100
 
185
185
        import authres.dmarc
186
186
        import authres.smime
187
187
        import authres.rrvs
188
 
        import authres.arc        
189
188
        _all_features = FeatureContext(
190
189
            authres.dkim_b,
191
190
            authres.dkim_adsp,
192
191
            authres.vbr,
193
192
            authres.dmarc,
194
193
            authres.smime,
195
 
            authres.rrvs,
196
 
            authres.arc
 
194
            authres.rrvs
197
195
        )
198
196
    return _all_features
199
197