Mail::IMAPTalk::MailCache - Handles building a Mail::Cache cache for Mail::IMAPTalk


Mail-IMAPTalk-MailCache documentation  | view source Contained in the Mail-IMAPTalk-MailCache distribution.

Index


NAME

Top

Mail::IMAPTalk::MailCache - Handles building a Mail::Cache cache for Mail::IMAPTalk

VERSION

Top

Version 0.0.1

SYNOPSIS

Top

    use Mail::IMAPTalk::MailCache;

    my $mc=Mail::Cache->new();
    $mc->init('My::Module', 'imap', 'someAccount', 'INBOX');
    if(!$mc->{error}){
        my %returned=Mail::IMAPTalk::MailCache->cache($imap, $mc);
        if(!$returned{error}){
            print "Error caching it.\n";
        }
    }

    my $foo = Mail::IMAPTalk::MailCache->new();
    ...

FUNCTIONS

Top

cache

This caches the currently selected IMAP folder into a specified Mail::Cache.

Three arguements are taken. The first that is taken is Mail::IMAPTalk object. The second is the Mail::Cache object. The third is if it should forcefully regenerate the the entire cache instead of just the new stuff.

    my $mc=Mail::Cache->new();
    $mc->init('My::Module', 'imap', 'someAccount', 'INBOX');
    if(!$mc->{error}){
        my %returned=Mail::IMAPTalk::MailCache->cache($imap, $mc, 0);
        if(!$returned{error}){
            print "Error: ".$returned{error}."\n";
        }
    }else{
        print "Failed to init the mail cache.\n";
    }

ERRORS

Top

1

Failed to get a list of UIDs for the

AUTHOR

Top

Zane C. Bowers, <vvelox at vvelox.net>

BUGS

Top

Please report any bugs or feature requests to bug-mail-imaptalk-mailcache at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Mail-IMAPTalk-MailCache. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Mail::IMAPTalk::MailCache




You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Mail-IMAPTalk-MailCache

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Mail-IMAPTalk-MailCache

* CPAN Ratings

http://cpanratings.perl.org/d/Mail-IMAPTalk-MailCache

* Search CPAN

http://search.cpan.org/dist/Mail-IMAPTalk-MailCache/

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


Mail-IMAPTalk-MailCache documentation  | view source Contained in the Mail-IMAPTalk-MailCache distribution.