summaryrefslogtreecommitdiff
path: root/lib/Mail/Transport/Receive.pm
blob: c1422f6b3347bf8a084ab2753a0cacaef1e83bb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyrights 2001-2020 by [Mark Overmeer].
#  For other contributors see ChangeLog.
# See the manual pages for details on the licensing terms.
# Pod stripped from pm file by OODoc 2.02.
# This code is part of distribution Mail-Transport.  Meta-POD processed with
# OODoc into POD and HTML manual-pages.  See README.md
# Copyright Mark Overmeer.  Licensed under the same terms as Perl itself.

package Mail::Transport::Receive;
use vars '$VERSION';
$VERSION = '3.005';

use base 'Mail::Transport';

use strict;
use warnings;


sub receive(@) {shift->notImplemented}

#------------------------------------------


1;