Source code for offlineimap.globals

# Copyright 2013 Eygene A. Ryabinkin.
#
# Module that holds various global objects.

from offlineimap.utils import const

# Holds command-line options for OfflineIMAP.
options = const.ConstProxy()

[docs]def set_options (source): """ Sets the source for options variable """ options.set_source (source)