Allow '+' character in local-part.

Bump PKGREVISION.
This commit is contained in:
taca 2013-01-29 15:48:55 +00:00
parent 2c3a04ff6b
commit 9f22655254
4 changed files with 23 additions and 5 deletions

View file

@ -1,9 +1,9 @@
# $NetBSD: Makefile,v 1.5 2012/12/04 11:19:13 taca Exp $
# $NetBSD: Makefile,v 1.6 2013/01/29 15:48:55 taca Exp $
#
DISTNAME= fml-4.0-stable-20040215
PKGNAME= fml4-4.0.3.20040215
PKGREVISION= 3
PKGREVISION= 4
CATEGORIES= mail
MASTER_SITES= ftp://ftp.fml.org/pub/fml/stable/

View file

@ -1,4 +1,4 @@
$NetBSD: distinfo,v 1.2 2012/05/21 07:20:41 marino Exp $
$NetBSD: distinfo,v 1.3 2013/01/29 15:48:55 taca Exp $
SHA1 (fml-4.0-stable-20040215.tar.gz) = b7f958deacc50a0173928b7c43df52b5869d9491
RMD160 (fml-4.0-stable-20040215.tar.gz) = 40eb43d2631a5e6d6769b8cfdf35e4a980ff0391
@ -10,4 +10,5 @@ SHA1 (patch-ad) = 17e5d1d97e5a085b8b5da67e00730ce92b959fbf
SHA1 (patch-ae) = 467a8bacfb0a6d41ceb1d8f52fc4bfc0ae2fc565
SHA1 (patch-af) = 9e7fa7c70b4f3353a5c33d0ded2eeae86d9a5c65
SHA1 (patch-ag) = 5a7a8a3d32e1a290e29cefa67aec584c21206d0c
SHA1 (patch-sbin_config.guess) = 686f469995a368310471ee3207407729c537bc82
SHA1 (patch-sbin_config.guess) = 66087f9512181bd76dcbca34a1d8532bdd6ae07c
SHA1 (patch-src_libkernsubr.pl) = c9d4e57b12fddb3045f47b27926c67cfe32c0d44

View file

@ -1,4 +1,6 @@
$NetBSD: patch-sbin_config.guess,v 1.1 2012/05/21 07:20:42 marino Exp $
$NetBSD: patch-sbin_config.guess,v 1.2 2013/01/29 15:48:55 taca Exp $
Add DragonFly support.
--- sbin/config.guess.orig 2012-05-21 07:04:19.000000000 +0000
+++ sbin/config.guess

View file

@ -0,0 +1,15 @@
$NetBSD: patch-src_libkernsubr.pl,v 1.1 2013/01/29 15:48:55 taca Exp $
Allow e-mail address which contains '+' character in local-part.
--- src/libkernsubr.pl.orig 2003-12-17 14:46:54.000000000 +0000
+++ src/libkernsubr.pl
@@ -50,7 +50,7 @@ sub __SecureP
# XXX: and for permitting a special backward compatibility.
# permit Email Address, 100.tar.gz, # command, # mget 100,last:10 mp ...
# if ($s =~ /^[\#\s\w\-\[\]\?\*\.\,\@\:]+$/) {
- if ($s =~ /^[\#\s\w\-\.\,\@\:]+$/) {
+ if ($s =~ /^[\#\s\w\-\+\.\,\@\:]+$/) {
1;
}
# since, this ; | is not checked when interact with shell in command.