Update polish/hunspell to version 20180127
[dports.git] / mail / p5-Email-Address-XS / pkg-descr
1 This module implements RFC 2822 parser and formatter of email addresses and
2 groups. It parses an input string from email headers which contain a list of
3 email addresses or a groups of email addresses (like From, To, Cc, Bcc,
4 Reply-To, Sender, ...). Also it can generate a string value for those headers
5 from a list of email addresses objects.
6
7 Parser and formatter functionality is implemented in XS and uses shared code
8 from Dovecot IMAP server.
9
10 It is a drop-in replacement for the Email::Address module which has several
11 security issues. Existing applications that use Email::Address module could be
12 easily switched to Email::Address::XS module. In most cases only changing use
13 Email::Address to use Email::Address::XS and replacing every Email::Address
14 occurrence with Email::Address::XS is sufficient.
15
16 So unlike Email::Address, this module does not use regular expressions for
17 parsing but instead native XS implementation parses input string sequentially
18 according to RFC 2822 grammar.
19
20 Additionally it has support also for named groups and so can be use instead of
21 the Email::Address::List module.
22
23 WWW: http://search.cpan.org/dist/Email-Address-XS/