aboutsummaryrefslogtreecommitdiff
path: root/lib/Sietima/Role/WithPostAddress.pm
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2019-04-29 15:44:40 +0100
committerdakkar <dakkar@thenautilus.net>2019-04-29 15:44:40 +0100
commit308c885f76632b56d4841968fe4a8287710be8ce (patch)
tree96df34b4e4959e839415e2c635111d669ccaf1b7 /lib/Sietima/Role/WithPostAddress.pm
parentv1.0.5 (diff)
parentDzil-build release 1.0.4 (from 402b4b8 on master) (diff)
downloadSietima-28651abb6bab526b3505d06f1535686c32100596.tar.gz
Sietima-28651abb6bab526b3505d06f1535686c32100596.tar.bz2
Sietima-28651abb6bab526b3505d06f1535686c32100596.zip
Dzil-build release 1.0.5 (from ad3b210 on master)v1.0.5
Diffstat (limited to 'lib/Sietima/Role/WithPostAddress.pm')
-rw-r--r--lib/Sietima/Role/WithPostAddress.pm60
1 files changed, 44 insertions, 16 deletions
diff --git a/lib/Sietima/Role/WithPostAddress.pm b/lib/Sietima/Role/WithPostAddress.pm
index 333c5e3..0e22e52 100644
--- a/lib/Sietima/Role/WithPostAddress.pm
+++ b/lib/Sietima/Role/WithPostAddress.pm
@@ -4,9 +4,40 @@ use Sietima::Policy;
use Sietima::Types qw(Address AddressFromStr);
use namespace::clean;
-# VERSION
+our $VERSION = '1.0.5'; # VERSION
# ABSTRACT: role for lists with a posting address
+
+has post_address => (
+ is => 'lazy',
+ isa => Address,
+ coerce => AddressFromStr,
+);
+sub _build_post_address($self) { $self->return_path }
+
+around list_addresses => sub($orig,$self) {
+ return +{
+ $self->$orig->%*,
+ post => $self->post_address,
+ };
+};
+
+1;
+
+__END__
+
+=pod
+
+=encoding UTF-8
+
+=head1 NAME
+
+Sietima::Role::WithPostAddress - role for lists with a posting address
+
+=head1 VERSION
+
+version 1.0.5
+
=head1 SYNOPSIS
my $sietima = Sietima->with_traits('WithPostAddress')->new({
@@ -24,26 +55,23 @@ On its own, this role is not very useful, but other roles (like L<<
C<ReplyTo>|Sietima::Role::ReplyTo >>) can have uses for a post
address.
-=attr C<post_address>
+=head1 ATTRIBUTES
+
+=head2 C<post_address>
An L<< C<Email::Address> >> object, defaults to the value of the L<<
C<return_path>|Sietima/return_path >> attribute. This is the address
that the mailing list receives messages at.
-=cut
+=head1 AUTHOR
-has post_address => (
- is => 'lazy',
- isa => Address,
- coerce => AddressFromStr,
-);
-sub _build_post_address($self) { $self->return_path }
+Gianni Ceccarelli <dakkar@thenautilus.net>
-around list_addresses => sub($orig,$self) {
- return +{
- $self->$orig->%*,
- post => $self->post_address,
- };
-};
+=head1 COPYRIGHT AND LICENSE
-1;
+This software is copyright (c) 2017 by Gianni Ceccarelli <dakkar@thenautilus.net>.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=cut