1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
#!/usr/bin/env perl
# PODNAME: gmail-imap-label
# ABSTRACT: IMAP proxy for Google's Gmail that retrieves message labels
use strict;
use warnings;
use FindBin qw($Bin);
use lib "$Bin/../lib";
use Net::Gmail::IMAP::Label 'run';
__END__
=pod
=encoding UTF-8
=head1 NAME
gmail-imap-label - IMAP proxy for Google's Gmail that retrieves message labels
=head1 VERSION
version 0.008
=head1 SYNOPSIS
gmail-imap-label [-?hpv] [long options...]
-p --port local port to connect to (default: 10143)
-v --verbose increase verbosity (multiple flags for more verbosity)
-? -h --help print usage message and exit
=head1 NAME
gmail-imap-label - IMAP proxy for Google's Gmail that retrieves message labels
=head1 OPTIONS
=over 8
=item B<-p I<port-number>>, B<--port I<port-number>>
Set the local port for the IMAP proxy. The default port is 10143.
=item B<-v>, B<--verbose>
Set the verbosity level. Multiple flags increase the verbosity level
(e.g. -v, -vv, -vvv).
=item B<-h>, B<-?>, B<--help>
Print a brief help message and exits.
=back
=head1 SEE ALSO
Description of proxy available in L<Net::Gmail::IMAP::Label>.
=head1 AUTHOR
Zakariyya Mughal <zmughal@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2011 by Zakariyya Mughal <zmughal@cpan.org>.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
=cut
|