Skip to content

Commit

Permalink
sender: set options when creating new sender object (#239)
Browse files Browse the repository at this point in the history
When using the sender from perl directly, there was no way to set the
options without twiddling with the sender objects internals which is
always a cursed thing to do.

Allow explicit setting of those options when creating the object.
  • Loading branch information
Davis-A authored Jul 4, 2024
1 parent 9588cc8 commit 25cb7c1
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions lib/Mail/DMARC/Report/Sender.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,17 @@ use Module::Load;

sub new {
my $class = shift;
my $args = shift;
my $self = {
send_delay => 5,
batch_size => 1,
alarm_at => 120,
syslog => 0,
smarthost => undef,
transports_method => undef,
transports_object => undef,
dkim_key => undef,
verbose => 0,
send_delay => $args->{delay} // 5,
batch_size => $args->{batch} // 1,
alarm_at => $args->{timeout} // 120,
syslog => $args->{syslog} // 0,
smarthost => $args->{smarthost} // undef,
transports_method => $args->{transports_method} // undef,
transports_object => $args->{transports_object} // undef,
dkim_key => $args->{dkim_key} // undef,
verbose => $args->{verbose} // 0,
};
return bless $self, $class;
};
Expand Down

0 comments on commit 25cb7c1

Please sign in to comment.