/usr/bin/gmail-imap-label is in libnet-gmail-imap-label-perl 0.007-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/env perl
use strict;
use warnings;
use FindBin qw($Bin);
use lib "$Bin/../lib";
use Net::Gmail::IMAP::Label 'run';
__END__
=head1 NAME
gmail-imap-label - IMAP proxy for Google's Gmail that retrieves message labels
=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 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>
=cut
|