learn to not download UIDs defined by the user

Allow users to workaround offending emails that offlineimap can't download.

Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht
2016-06-28 23:58:03 +02:00
parent f0096391fc
commit 29e06a60f9
8 changed files with 68 additions and 11 deletions

View File

@ -1,5 +1,5 @@
# Curses-based interfaces
# Copyright (C) 2003-2015 John Goerzen & contributors
# Copyright (C) 2003-2016 John Goerzen & contributors.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -442,6 +442,10 @@ class Blinkenlights(UIBase, CursesUtil):
self.gettf().setcolor('blue')
super(Blinkenlights, self).syncingmessages(*args)
def ignorecopyingmessage(self, *args):
self.gettf().setcolor('red')
super(Blinkenlights, self).ignorecopyingmessage(*args)
def copyingmessage(self, *args):
self.gettf().setcolor('orange')
super(Blinkenlights, self).copyingmessage(*args)