Add p5-Email-Address-XS 1.00

This module implements RFC 2822 parser and formatter of email addresses and
groups. It parses an input string from email headers which contain a list of
email addresses or a groups of email addresses (like From, To, Cc, Bcc,
Reply-To, Sender, ...). Also it can generate a string value for those headers
from a list of email addresses objects.

Parser and formatter functionality is implemented in XS and uses shared code
from Dovecot IMAP server.

It is a drop-in replacement for the Email::Address module which has several
security issues. Existing applications that use Email::Address module could be
easily switched to Email::Address::XS module. In most cases only changing use
Email::Address to use Email::Address::XS and replacing every Email::Address
occurrence with Email::Address::XS is sufficient.

So unlike Email::Address, this module does not use regular expressions for
parsing but instead native XS implementation parses input string sequentially
according to RFC 2822 grammar.

Additionally it has support also for named groups and so can be use instead of
the Email::Address::List module.

WWW: http://search.cpan.org/dist/Email-Address-XS/
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2017-07-26 18:19:33 +00:00
parent ebe6abf500
commit 9bbd3d1f5e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=446673
5 changed files with 52 additions and 0 deletions

View File

@ -325,6 +325,7 @@
SUBDIR += p5-Email-Address
SUBDIR += p5-Email-Address-List
SUBDIR += p5-Email-Address-Loose
SUBDIR += p5-Email-Address-XS
SUBDIR += p5-Email-AddressParser
SUBDIR += p5-Email-Date
SUBDIR += p5-Email-Date-Format

View File

@ -0,0 +1,22 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= Email-Address-XS
PORTVERSION= 1.00
CATEGORIES= mail perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Parse and format RFC 2822 email addresses and groups
LICENSE= ART10 GPLv1
LICENSE_COMB= dual
USE_PERL5= configure
USES= perl5
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Email/Address/XS/XS.so
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1501088953
SHA256 (Email-Address-XS-1.00.tar.gz) = 52d5a1f8c3bace4bae6d25b123a00213d6de027cac0da6666f1ed4f7b6bebd18
SIZE (Email-Address-XS-1.00.tar.gz) = 24104

View File

@ -0,0 +1,23 @@
This module implements RFC 2822 parser and formatter of email addresses and
groups. It parses an input string from email headers which contain a list of
email addresses or a groups of email addresses (like From, To, Cc, Bcc,
Reply-To, Sender, ...). Also it can generate a string value for those headers
from a list of email addresses objects.
Parser and formatter functionality is implemented in XS and uses shared code
from Dovecot IMAP server.
It is a drop-in replacement for the Email::Address module which has several
security issues. Existing applications that use Email::Address module could be
easily switched to Email::Address::XS module. In most cases only changing use
Email::Address to use Email::Address::XS and replacing every Email::Address
occurrence with Email::Address::XS is sufficient.
So unlike Email::Address, this module does not use regular expressions for
parsing but instead native XS implementation parses input string sequentially
according to RFC 2822 grammar.
Additionally it has support also for named groups and so can be use instead of
the Email::Address::List module.
WWW: http://search.cpan.org/dist/Email-Address-XS/

View File

@ -0,0 +1,3 @@
%%SITE_ARCH%%/Email/Address/XS.pm
%%SITE_ARCH%%/auto/Email/Address/XS/XS.so
%%PERL5_MAN3%%/Email::Address::XS.3.gz