File: control

package info (click to toggle)
libmail-rfc822-address-perl 0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 76 kB
  • ctags: 10
  • sloc: perl: 206; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,441 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Source: libmail-rfc822-address-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Standards-Version: 3.9.8
Homepage: http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libmail-rfc822-address-perl.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmail-rfc822-address-perl.git
Testsuite: autopkgtest-pkg-perl

Package: libmail-rfc822-address-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends}
Description: Perl extension for validating email addresses 
 Mail::RFC822::Address validates email addresses against the grammar described
 in RFC 822 using regular expressions.  How to validate a user supplied email
 address is a FAQ (see perlfaq9): the only sure way to see if a supplied email
 address is genuine is to send an email to it and see if the user receives it.
 The one useful check that can be performed on an address is to check that the
 email address is syntactically valid.  That is what this module does.
 .
 This module is functionally equivalent to RFC::RFC822::Address, but uses
 regular expressions rather than the Parse::RecDescent parser.  This means that
 startup time is greatly reduced making it suitable for use in transient scripts
 such as CGI scripts.