Within offlineimap, the classes OfflineImap provides the high-level functionality. The rest of the classes should usually not needed to be touched by the user. Email repositories are represented by a offlineimap.repository.Base.BaseRepository or derivatives (see offlineimap.repository for details). A folder within a repository is represented by a offlineimap.folder.Base.BaseFolder or any derivative from offlineimap.folder.
This page contains the main API overview of OfflineImap 6.5.3.1.
OfflineImap can be imported as:
from offlineimap import OfflineImap
The file SubmittingPatches.rst in the source distribution documents a number of resources and conventions you may find useful. It will eventually be merged into the main documentation. .. TODO: merge SubmittingPatches.rst to the main documentation
An accounts.Account connects two email repositories that are to be synced. It comes in two flavors, normal and syncable.
Represents an account (ie. 2 repositories) to sync
Most of the time you will actually want to use the derived accounts.SyncableAccount which contains all functions used for syncing an account.
Parameters: |
|
---|
A syncable email account connecting 2 repositories
Derives from accounts.Account but contains the additional functions syncrunner(), sync(), syncfolders(), used for syncing.
Contains the current offlineimap.ui, and can be used for logging etc.
Checks if an abort signal had been sent
If the ‘skipsleep’ config option for this account had been set, with set_abort_event(config, 1) it will get cleared in this function. Ie, we will only skip one sleep and not all.
Returns: | True, if the main thread had called set_abort_event() earlier, otherwise ‘False’. |
---|
Lock the account, throwing an exception if it is locked already
Output diagnostics for all involved repositories
Set skip sleep/abort event for all accounts
If we want to skip a current (or the next) sleep, or if we want to abort an autorefresh loop, the main thread can use set_abort_event() to send the corresponding signal. Signum = 1 implies that we want all accounts to abort or skip the current or next sleep phase. Signum = 2 will end the autorefresh loop, ie all accounts will return after they finished a sync. signum=3 means, abort NOW, e.g. on SIGINT or SIGTERM.
This is a class method, it will send the signal to all accounts.
Sleep if the account is set to autorefresh
Returns: | 0:timeout expired, 1: canceled the timer, 2:request to abort the program, 100: if configured to not sleep at all. |
---|
Synchronize the account once, then return
Assumes that self.remoterepos, self.localrepos, and self.statusrepos has already been populated, so it should only be called from the syncrunner() function.
Unlock the account, deleting the lock file
An Error during offlineimap synchronization
Parameters: |
|
---|
This execption inherits directly from Exception and is raised on errors during the offlineimap execution. It has an attribute severity that denotes the severity level of the error.
Severity level of an Exception