blob: ff53f02ce9d8ca4d86a96ee6391ed278c716d93c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# -*- coding: utf8 -*-
"""
Module displaying the number of unread messages
on an IMAP inbox (configurable, may also be a
comma-separated list of IMAP folders).
@author obb
"""
import imaplib
from time import time
class Py3status:
# available configuration parameters
cache_timeout = 60
criterion = 'UNSEEN'
hide_if_zero = False
imap_server = '<IMAP_SERVER>'
mailbox = 'INBOX'
name = 'Mail: {unseen}'
new_mail_color = ''
password = '<PASSWORD>'
port = '993'
user = '<USERNAME>'
def check_mail(self, i3s_output_list, i3s_config):
mail_count = self._get_mail_count()
response = {
'cached_until': time() + self.cache_timeout
}
if not self.new_mail_color:
self.new_mail_color = i3s_config['color_good']
if mail_count == 'N/A':
response['color'] = ''
response['full_text'] = mail_count
elif mail_count != 0:
response['color'] = self.new_mail_color
response['full_text'] = self.name.format(unseen=mail_count)
else:
response['color'] = ''
if self.hide_if_zero:
response['full_text'] = ''
else:
response['full_text'] = self.name.format(unseen=mail_count)
return response
def _get_mail_count(self):
try:
mail_count = 0
directories = self.mailbox.split(',')
connection = imaplib.IMAP4_SSL(self.imap_server, self.port)
connection.login(self.user, self.password)
for directory in directories:
connection.select(directory)
unseen_response = connection.search(None, self.criterion)
mails = unseen_response[1][0].split()
mail_count += len(mails)
connection.close()
return mail_count
except:
return 'N/A'
if __name__ == "__main__":
"""
Test this module by calling it directly.
"""
from time import sleep
x = Py3status()
config = {
'color_good': '#00FF00',
'color_bad': '#FF0000',
}
while True:
print(x.check_mail([], config))
sleep(1)
|