
imap_processor version 1.9.0 has been released! * home: <https://github.com/seattlerb/imap_processor> * rdoc: <http://docs.seattlerb.org/imap_processor> IMAPProcessor is a client for processing messages on an IMAP server. It provides some basic mechanisms for connecting to an IMAP server, determining capabilities and handling messages. IMAPProcessor ships with several executables which can query and manipulate IMAP mailboxes in several different ways: imap_archive :: Archives old messages to a new dated mailbox. imap_cleanse :: Delete messages older than a certain age in specified mailboxes. imap_tidy :: Archive + Cleanse: Moves older messages to a dated mailbox. imap_flag :: Flag messages to/from certain people. imap_idle :: Shows new messages in a mailbox. imap_keywords :: Queries an IMAP server for keywords set on messages imap_learn :: Flags messages based on what you've flagged before. imap_mkdir :: Ensures that certain mailboxes exist. Changes: ### 1.9.0 / 2025-09-09 * 1 minor enhancement: * Added verbose accessors to IMAPProcessor. * 6 bug fixes: * Fixed bug in IMAPProcessor#create_mailbox w/ newer versions of Net::IMAP. * Fixed bug with frozen string literals. * Fixed deprecation warnings instantiating Net::IMAP w/ newer versions. * Fixed to work with Net::IMAP::SASL. * Fixed to work with newer vensions of Net::IMAP. * Removed warnings loading/configuring Net::IMAP::SASL.