I've got an IMAP mail account where I work and I keep bumping against the quota. I don't have an obvious way to find out what messages/folders are hogging all the space. I'm trying to write a perl script that will find out the size of all my messages and the total size consumed in each folder. If you know a slick way to solve my actual problem, please let me have it!

I've been working with Net::IMAP, but the documentation is a little vague and it's giving me trouble. Net::IMAP::Simple doesn't seem to have a function that will return message sizes. I haven't looked at any others. Let me know if you recommend a different module. Preferably one with examples in the documentation!

Right now I'm stuck trying to get a list of folders from Net::IMAP. I can connect to my IMAP server, authenticate, and run a "list" command, but the response is a plain "Net::IMAP::Response" object (saying "LIST completed.") not a "Net::IMAP::List" object and I can't see any way to get a "Net::IMAP::List object. So, if you've ever bumped heads with Net::IMAP, maybe you can help me with that.


In reply to IMAP & File Sizes by pileofrogs

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.