Class representing mbox configuration.
Mbox configuration is used for backing up mbox email files.
Unlike collect configuration, no global exclusions are allowed on this
level. We only allow relative exclusions at the mbox directory level.
Also, there is no configured ignore file. This is because mbox directory
backups are not recursive.
|
__init__(self,
collectMode=None,
compressMode=None,
mboxFiles=None,
mboxDirs=None)
Constructor for the MboxConfig class. |
source code
|
|
|
|
|
|
|
|
|
__eq__(self,
other)
Equals operator, iplemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__lt__(self,
other)
Less-than operator, iplemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__gt__(self,
other)
Greater-than operator, iplemented in terms of original Python 2
compare operator. |
source code
|
|
|
|
|
_getCollectMode(self)
Property target used to get the collect mode. |
source code
|
|
|
|
|
_getCompressMode(self)
Property target used to get the compress mode. |
source code
|
|
|
|
|
_getMboxFiles(self)
Property target used to get the mboxFiles list. |
source code
|
|
|
|
|
_getMboxDirs(self)
Property target used to get the mboxDirs list. |
source code
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|