summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Restriction
diff options
context:
space:
mode:
authorfukachan <fukachan>2006-02-04 08:00:09 +0000
committerfukachan <fukachan>2006-02-04 08:00:09 +0000
commitc97f07ece9ae058229b76efacbc97b5f4cd1fcc7 (patch)
treeb13c2e7b58c9e3769b44561baf35437322d64545 /fml/lib/FML/Restriction
parentd9abdd754b385693935a632e68b9e69e38417f76 (diff)
downloadfml8-c97f07ece9ae058229b76efacbc97b5f4cd1fcc7.tar.gz
fml8-c97f07ece9ae058229b76efacbc97b5f4cd1fcc7.tar.bz2
fml8-c97f07ece9ae058229b76efacbc97b5f4cd1fcc7.zip
add basic CREATE-ON-POST support.
Diffstat (limited to 'fml/lib/FML/Restriction')
-rw-r--r--fml/lib/FML/Restriction/CreateOnPost.pm117
1 files changed, 117 insertions, 0 deletions
diff --git a/fml/lib/FML/Restriction/CreateOnPost.pm b/fml/lib/FML/Restriction/CreateOnPost.pm
new file mode 100644
index 00000000..7a18c9c8
--- /dev/null
+++ b/fml/lib/FML/Restriction/CreateOnPost.pm
@@ -0,0 +1,117 @@
+#-*- perl -*-
+#
+# Copyright (C) 2006 Ken'ichi Fukamachi
+# All rights reserved. This program is free software; you can
+# redistribute it and/or modify it under the same terms as Perl itself.
+#
+# $FML$
+#
+
+package FML::Restriction::CreateOnPost;
+use strict;
+use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
+use Carp;
+
+push(@ISA, qw(FML::Restriction::Post));
+
+=head1 NAME
+
+FML::Restriction::CreateOnPost - restrictions on craete-on-post.
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+=head1 METHODS
+
+=cut
+
+
+# Descriptions: constructor.
+# Arguments: OBJ($self) OBJ($curproc)
+# Side Effects: none
+# Return Value: OBJ
+sub new
+{
+ my ($self, $curproc) = @_;
+ my ($type) = ref($self) || $self;
+ my $me = { _curproc => $curproc };
+ return bless $me, $type;
+}
+
+
+# Descriptions:
+# Arguments: OBJ($self) STR($rule) STR($sender)
+# Side Effects: none
+# Return Value: ARRAY(STR, STR)
+sub reject_errormail
+{
+ my ($self, $rule, $sender) = @_;
+
+ if ($sender eq '<>') {
+ return("matched", "deny");
+ }
+
+ return(0, undef);
+}
+
+
+# Descriptions:
+# Arguments: OBJ($self) STR($rule) STR($sender)
+# Side Effects: none
+# Return Value: ARRAY(STR, STR)
+sub reject_fml8_managed_address
+{
+ my ($self, $rule, $sender) = @_;
+ my $curproc = $self->{ _curproc };
+
+ if ($curproc->is_fml8_managed_address($sender)) {
+ return("matched", "deny");
+ }
+
+ return(0, undef);
+}
+
+
+# Descriptions:
+# Arguments: OBJ($self) STR($rule) STR($sender)
+# Side Effects: none
+# Return Value: ARRAY(STR, STR)
+sub reject_createonpost_domain
+{
+ my ($self, $rule, $sender) = @_;
+ my $curproc = $self->{ _curproc };
+ my $ml_domain = $curproc->ml_domain();
+
+ if ($sender =~ /\@$ml_domain$/i) {
+ return("matched", "deny");
+ }
+
+ return(0, undef);
+}
+
+
+=head1 CODING STYLE
+
+See C<http://www.fml.org/software/FNF/> on fml coding style guide.
+
+=head1 AUTHOR
+
+Ken'ichi Fukamachi
+
+=head1 COPYRIGHT
+
+Copyright (C) 2006 Ken'ichi Fukamachi
+
+All rights reserved. This program is free software; you can
+redistribute it and/or modify it under the same terms as Perl itself.
+
+=head1 HISTORY
+
+FML::Restriction::CreateOnPost first appeared in fml8 mailing list driver package.
+See C<http://www.fml.org/> for more details.
+
+=cut
+
+
+1;