Removed
Link Here
|
1 |
--- lib/Mail/Milter/Authentication.pm.orig 2024-02-05 02:41:57 UTC |
2 |
+++ lib/Mail/Milter/Authentication.pm |
3 |
@@ -32,11 +32,14 @@ use vars qw(@ISA); |
4 |
my $MYARGS = { |
5 |
'ident' => $Mail::Milter::Authentication::Config::IDENT, |
6 |
'to_stderr' => 0, # handled elsewhere |
7 |
+ 'to_stdout' => 0, # handled elsewhere |
8 |
'log_pid' => 1, |
9 |
'facility' => LOG_MAIL, |
10 |
}; |
11 |
if ( exists $config->{ 'log_dispatchouli' } ) { |
12 |
- $MYARGS = $config->{ 'log_dispatchouli' }; |
13 |
+ foreach my $k (keys %{$config->{ 'log_dispatchouli' }}) { |
14 |
+ $MYARGS->{$k} = $config->{ 'log_dispatchouli' }->{$k}; |
15 |
+ } |
16 |
} |
17 |
|
18 |
$LOGGER = Log::Dispatchouli->new( $MYARGS ); |