#!perl

use strict;
use warnings;

package backimap;

require App::backimap;

# ABSTRACT: backups imap mail
my $app = App::backimap->new(@ARGV);
$app->run();



=pod

=head1 NAME

backimap - backups imap mail

=head1 VERSION

version 0.00_07

=head1 SYNOPSIS

    backimap imaps://user.name@gmail.com@imap.gmail.com/INBOX
    
    Options:
        --init       Initialize Git repo and setup backimap status.
        --clean      Clean up Git repo if dirty.
        --dir PATH   Path to Git repo (default: $HOME/.backimap)
        --verbose    Enable verbose messages.
        --help|-h    This help message.

=head1 AUTHOR

Alex Muntada <alexm@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Alex Muntada.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut


__END__

