• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Mail/H15-Sep-2021-2,8641,411

t/H15-Sep-2021-1,7471,330

ChangesH A D15-Sep-20211.7 KiB6245

LICENSEH A D15-Sep-202117.9 KiB380292

MANIFESTH A D15-Sep-20211.5 KiB6160

META.ymlH A D15-Sep-2021823 3332

Makefile.PLH A D15-Sep-20211.3 KiB6453

READMEH A D15-Sep-20211.2 KiB5329

README.mdH A D15-Sep-20211 KiB2513

dist.iniH A D15-Sep-2021457 3021

weaver.iniH A D15-Sep-2021353 3220

README

1NAME
2
3    Mail::AuthenticationResults - Object Oriented Authentication-Results
4    Headers
5
6VERSION
7
8    version 2.20210915
9
10DESCRIPTION
11
12    Object Oriented Authentication-Results email headers.
13
14    This parser copes with most styles of Authentication-Results header
15    seen in the wild, but is not yet fully RFC7601 compliant
16
17    Differences from RFC7601
18
19    key/value pairs are parsed when present in the authserv-id section,
20    this is against RFC but has been seen in headers added by Yahoo!.
21
22    Comments added between key/value pairs will be added after them in the
23    data structures and when stringified.
24
25METHODS
26
27 new()
28
29    Return a new Mail::AuthenticationResults object
30
31 parser()
32
33    Returns a new Mail::AuthenticationResults::Parser object for the
34    supplied $auth_results header
35
36BUGS
37
38    Please report bugs via the github tracker.
39
40    https://github.com/marcbradshaw/Mail-AuthenticationResults/issues
41
42AUTHOR
43
44    Marc Bradshaw <marc@marcbradshaw.net>
45
46COPYRIGHT AND LICENSE
47
48    This software is copyright (c) 2021 by Marc Bradshaw.
49
50    This is free software; you can redistribute it and/or modify it under
51    the same terms as the Perl 5 programming language system itself.
52
53

README.md

1# Mail::AuthenticationResults
2
3Object Oriented Authentication-Results Headers
4
5[![Code on GitHub](https://img.shields.io/badge/github-repo-blue.svg)](https://github.com/marcbradshaw/Mail-AuthenticationResults)
6
7[![Build Status](https://travis-ci.org/marcbradshaw/Mail-AuthenticationResults.svg?branch=master)](https://travis-ci.org/marcbradshaw/Mail-AuthenticationResults)
8
9[![Open Issues](https://img.shields.io/github/issues/marcbradshaw/Mail-AuthenticationResults.svg)](https://github.com/marcbradshaw/Mail-AuthenticationResults/issues)
10
11[![Dist on CPAN](https://img.shields.io/cpan/v/Mail-AuthenticationResults.svg)](https://metacpan.org/release/Mail-AuthenticationResults)
12
13[![CPANTS](https://img.shields.io/badge/cpants-kwalitee-blue.svg)](http://cpants.cpanauthors.org/dist/Mail-AuthenticationResults)
14
15# AUTHOR
16
17Marc Bradshaw <marc@marcbradshaw.net>
18
19# COPYRIGHT AND LICENSE
20
21This software is copyright (c) 2021 by Marc Bradshaw.
22
23This is free software; you can redistribute it and/or modify it under
24the same terms as the Perl 5 programming language system itself.
25