Skip to main content

Convenience classes and methods for processing IMAP mailboxes

Project description

Here are some convenience classes and methods for processing IMAP mailboxes. Since the classes are derived from the imaplib classes, all methods available in the imaplib classes are directly usable.

Installation

easy_install -U imapIO

Usage

# Connect to IMAP server
import imapIO
server = imapIO.connect(host, port, user, password)

# Select folder
import random
messageCount = server.cd(random.choice(server.folders))

# Walk messages in inbox sorted by arrival time
for email in server.walk(includes='inbox', sortCriterion='ARRIVAL'):
    # Show information
    print
    print 'Date: %s' % email.whenUTC
    print 'Subject: %s' % email.subject.encode('utf-8')
    print 'From: %s' % email.fromWhom.encode('utf-8')
    print 'From (nickname): %s' % imapIO.clean_nickname(email.fromWhom)
    print 'To: %s' % email.toWhom.encode('utf-8')
    print 'CC: %s' % email.ccWhom.encode('utf-8')
    print 'BCC: %s' % email.bccWhom.encode('utf-8')
    # Set flags
    email.seen = False
    email.deleted = False

# Walk messages satisfying search criterion
emailCriterion = 'BEFORE 23-JAN-2005'
emailGenerator = server.walk(excludes=['public', 'trash'], searchCriterion=emailCriterion)
for emailIndex, email in enumerate(emailGenerator):
    # Show flags
    print
    print email.flags
    # Save email in compressed format on hard drive
    emailPath = '%s.gz' % emailIndex
    partPacks = email.save(emailPath)
    # Extract attachments from email on hard drive
    for partIndex, filename, contentType, payload in imapIO.extract_parts(emailPath):
        print len(payload), filename.encode('utf-8')

# Create a message in the inbox
import datetime
server.revive('inbox', imapIO.build_message(
    whenUTC=datetime.datetime(2005, 1, 23, 1, 0),
    subject='Subject',
    fromWhom='from@example.com',
    toWhom='to@example.com',
    ccWhom='cc@example.com',
    bccWhom='bcc@example.com',
    bodyText=u'text',
    bodyHTML=u'<html>text</html>',
    attachmentPaths=[
        'CHANGES.rst',
        'README.rst',
    ]))
email = server.walk('inbox', searchCriterion='FROM from@example.com TO to@example.com').next()
email.deleted = True
server.expunge()

0.9.2

  • Reverted to set() for versions of Python < 2.7 that lack set literal syntax

  • Removed keyword arguments from decode() to support versions of Python < 2.7

  • Fixed tests for servers like Lotus Domino that do not update search indices

0.9.1

  • Changed walk() to use UID directly

  • Added support for sortCriterion using UID SORT

  • Improved test coverage to 80%

0.9.0

  • Extracted code from imap-search-scout

  • Made API more user-friendly

  • Improved test coverage to 79%

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

imapIO-0.9.2.tar.gz (8.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page