File Coverage

blib/lib/Mail/Server/IMAP4.pm
Criterion Covered Total %
statement 24 24 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 32 32 100.0


line stmt bran cond sub pod time code
1             # This code is part of Perl distribution Mail-Box-IMAP4 version 4.01.
2             # The POD got stripped from this file by OODoc version 3.05.
3             # For contributors see file ChangeLog.
4              
5             # This software is copyright (c) 2001-2025 by Mark Overmeer.
6              
7             # This is free software; you can redistribute it and/or modify it under
8             # the same terms as the Perl 5 programming language system itself.
9             # SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later
10              
11              
12             package Mail::Server::IMAP4;{
13             our $VERSION = '4.01';
14             }
15              
16 1     1   1468 use parent 'Mail::Server';
  1         2  
  1         7  
17              
18 1     1   1168 use strict;
  1         2  
  1         26  
19 1     1   5 use warnings;
  1         2  
  1         113  
20              
21 1     1   9 use Log::Report 'mail-box-imap4', import => [];
  1         2  
  1         6  
22              
23 1     1   156 use Mail::Server::IMAP4::List ();
  1         2  
  1         60  
24 1     1   7 use Mail::Server::IMAP4::Fetch ();
  1         2  
  1         31  
25 1     1   7 use Mail::Server::IMAP4::Search ();
  1         2  
  1         48  
26 1     1   849 use Mail::Transport::IMAP4 ();
  1         6  
  1         55  
27              
28             #--------------------
29              
30             #--------------------
31              
32             1;