本文整理匯總了Python中mailpile.Mailpile.rescan方法的典型用法代碼示例。如果您正苦於以下問題:Python Mailpile.rescan方法的具體用法?Python Mailpile.rescan怎麽用?Python Mailpile.rescan使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類mailpile.Mailpile
的用法示例。
在下文中一共展示了Mailpile.rescan方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: assert
# 需要導入模塊: from mailpile import Mailpile [as 別名]
# 或者: from mailpile.Mailpile import rescan [as 別名]
mp.set('profiles/0/name = Test Account')
mp.set('profiles/0/route = |%s -i %%(rcpt)s' % mailpile_send)
mp.set('sys/debug = sendmail log compose')
mp.set('prefs/openpgp_header = encrypt')
# Set up dummy conctact importer fortesting, disable Gravatar
mp.set('prefs/vcard/importers/demo/0/name = Mr. Rogers')
mp.set('prefs/vcard/importers/gravatar/0/active = false')
mp.set('prefs/vcard/importers/gpg/0/active = false')
# Make sure that actually worked
assert(not mp._config.prefs.vcard.importers.gpg[0].active)
assert(not mp._config.prefs.vcard.importers.gravatar[0].active)
# Do we have a Mr. Rogers contact?
mp.rescan('vcards')
assert(mp.contact('[email protected]'
).result['contact']['fn'] == u'Mr. Rogers')
assert(len(mp.contact_list('rogers').result['contacts']) == 1)
# Add the mailboxes, scan them
for mailbox in ('tests.mbx', 'Maildir'):
mp.add(os.path.join(mailpile_test, mailbox))
mp.rescan()
# Save and load the index, just for kicks
messages = len(mp._config.index.INDEX)
assert(messages > 5)
mp._config.index.save(mp._session)
mp._session.ui.reset_marks()
mp._config.index.load(mp._session)
示例2: Mailpile
# 需要導入模塊: from mailpile import Mailpile [as 別名]
# 或者: from mailpile.Mailpile import rescan [as 別名]
try:
# First, we set up a pristine Mailpile
os.system('rm -rf %s' % mailpile_home)
mp = Mailpile(workdir=mailpile_home)
def say(stuff):
mp._session.ui.mark(stuff)
mp._session.ui.reset_marks()
# Set up initial tags and such
mp.setup()
# Add the mailboxes, scan them
for mailbox in ('tests.mbx', 'Maildir'):
mp.add(os.path.join(mailpile_test, mailbox))
mp.rescan()
# Save and load the index, just for kicks
mp._config.index.save()
mp._config.index.load()
# Rescan AGAIN, so we can test for the presence of duplicates.
mp.rescan()
# Search for things, there should be exactly one match for each.
mp.order('flat-date')
for search in (['from:wow'],
['agirorn'],
['subject:emerging'],
['from:twitter', 'brennan'],
['dates:2013-09-17', 'feministinn'],
示例3: len
# 需要導入模塊: from mailpile import Mailpile [as 別名]
# 或者: from mailpile.Mailpile import rescan [as 別名]
mp.set("profiles/0/email = %s" % MY_FROM)
mp.set("profiles/0/name = Test Account")
mp.set("profiles/0/route = |%s -i %%(rcpt)s" % mailpile_send)
mp.set("sys/debug = sendmail log compose")
# Set up dummy conctact importer fortesting, disable Gravatar
mp.set("prefs/vcard/importers/demo/0/name = Mr. Rogers")
mp.set("prefs/vcard/importers/gravatar/0/active = false")
mp.set("prefs/vcard/importers/gpg/0/active = false")
# Make sure that actually worked
assert not mp._config.prefs.vcard.importers.gpg[0].active
assert not mp._config.prefs.vcard.importers.gravatar[0].active
# Do we have a Mr. Rogers contact?
mp.rescan("vcards")
assert mp.contact("[email protected]").result["contact"]["fn"] == u"Mr. Rogers"
assert len(mp.contact_list("rogers").result["contacts"]) == 1
# Add the mailboxes, scan them
for mailbox in ("tests.mbx", "Maildir"):
mp.add(os.path.join(mailpile_test, mailbox))
mp.rescan()
# Save and load the index, just for kicks
messages = len(mp._config.index.INDEX)
assert messages > 5
mp._config.index.save(mp._session)
mp._session.ui.reset_marks()
mp._config.index.load(mp._session)
mp._session.ui.reset_marks()