2020-02-17 17:00:59 +04:00
|
|
|
{ python3, iconfont, config, ... }: ''
|
|
|
|
#!${python3}/bin/python3
|
|
|
|
import imaplib
|
|
|
|
obj = imaplib.IMAP4_SSL('imap.${config.secrets.mail.host}', 993)
|
|
|
|
obj.login("${config.secrets.mail.user}@${config.secrets.mail.host}", "${config.secrets.mail.password}")
|
|
|
|
obj.select()
|
|
|
|
l = len(obj.search(None, 'unseen')[1][0].split())
|
2020-07-27 01:16:19 +04:00
|
|
|
if l == 0:
|
|
|
|
print('')
|
|
|
|
else:
|
|
|
|
print('<span font="${iconfont}"></span> %s' % str(l))
|
|
|
|
exit(33)
|
2020-02-17 17:00:59 +04:00
|
|
|
''
|