summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Restriction/Base.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-03-18 13:54:28 +0000
committerfukachan <fukachan>2002-03-18 13:54:28 +0000
commit010ab46f025b9e9895b598c0952badb3f0e295af (patch)
tree109fedf48afeefae932a79d3a90d2ffe5153ac4f /fml/lib/FML/Restriction/Base.pm
parent9ee699873afac9d7f08ca99678d1e2a48f55a3c5 (diff)
downloadfml8-010ab46f025b9e9895b598c0952badb3f0e295af.tar.gz
fml8-010ab46f025b9e9895b598c0952badb3f0e295af.tar.bz2
fml8-010ab46f025b9e9895b598c0952badb3f0e295af.zip
define address_{specified,selected} same as address
Diffstat (limited to 'fml/lib/FML/Restriction/Base.pm')
-rw-r--r--fml/lib/FML/Restriction/Base.pm8
1 files changed, 6 insertions, 2 deletions
diff --git a/fml/lib/FML/Restriction/Base.pm b/fml/lib/FML/Restriction/Base.pm
index 3deb030e..0ea519be 100644
--- a/fml/lib/FML/Restriction/Base.pm
+++ b/fml/lib/FML/Restriction/Base.pm
@@ -3,7 +3,7 @@
# Copyright (C) 2001 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: Base.pm,v 1.3 2001/12/22 09:21:11 fukachan Exp $
+# $FML: Base.pm,v 1.4 2001/12/23 12:19:14 fukachan Exp $
#
package FML::Restriction::Base;
@@ -58,12 +58,16 @@ sub new
my %basic_variable =
(
- 'address' => '[-a-z0-9_]+\@[-A-Za-z0-9\.]+',
+ 'address' => '[-a-z0-9_]+\@[-A-Za-z0-9\.]+',
+ 'address_specified' => '[-a-z0-9_]+\@[-A-Za-z0-9\.]+',
+ 'address_selected' => '[-a-z0-9_]+\@[-A-Za-z0-9\.]+',
+
'ml_name' => '[-a-z0-9_]+',
'action' => '[-a-z_]+',
'command' => '[-a-z_]+',
'user' => '[-a-z0-9_]+',
'article_id' => '\d+',
+
);