File Coverage

blib/lib/Log/Saftpresse/Plugin/Postfix/Smtp.pm
Criterion Covered Total %
statement 3 11 27.2
branch 0 6 0.0
condition n/a
subroutine 1 2 50.0
pod 0 1 0.0
total 4 20 20.0


line stmt bran cond sub pod time code
1             package Log::Saftpresse::Plugin::Postfix::Smtp;
2              
3 1     1   734 use Moose::Role;
  1         2  
  1         4  
4              
5             # ABSTRACT: plugin to gather postfix smtp client statistics
6             our $VERSION = '1.4'; # VERSION
7              
8             sub process_smtp {
9 0     0 0   my ( $self, $stash ) = @_;
10 0           my $service = $stash->{'service'};
11 0 0         if( $service ne 'smtp' ) { return; }
  0            
12              
13             # Was an IPv6 problem here
14 0 0         if($stash->{'message'} =~ /^connect to (\S+?): ([^;]+); address \S+ port.*$/) {
    0          
15 0           $self->incr_host_one( $stash, 'messages', lc($2), $1);
16             } elsif($stash->{'message'} =~ /^connect to ([^[]+)\[\S+?\]: (.+?) \(port \d+\)$/) {
17 0           $self->incr_host_one( $stash, 'messages', lc($2), $1);
18             }
19              
20             # TODO: is it possible to count connections?
21             #$self->incr_host_one( $stash, 'connections');
22              
23 0           return;
24             }
25              
26             1;
27              
28             __END__
29              
30             =pod
31              
32             =encoding UTF-8
33              
34             =head1 NAME
35              
36             Log::Saftpresse::Plugin::Postfix::Smtp - plugin to gather postfix smtp client statistics
37              
38             =head1 VERSION
39              
40             version 1.4
41              
42             =head1 AUTHOR
43              
44             Markus Benning <ich@markusbenning.de>
45              
46             =head1 COPYRIGHT AND LICENSE
47              
48             This software is Copyright (c) 1998 by James S. Seymour, 2015 by Markus Benning.
49              
50             This is free software, licensed under:
51              
52             The GNU General Public License, Version 2, June 1991
53              
54             =cut