mirror of
https://github.com/pulb/mailnag.git
synced 2026-01-27 23:39:03 +01:00
728 lines
27 KiB
Python
728 lines
27 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# mailnag.py
|
|
#
|
|
# Copyright 2011 Patrick Ulbrich <zulu99@gmx.net>
|
|
# Copyright 2011 Ralf Hersel <ralf.hersel@gmx.net>
|
|
#
|
|
# 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
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
# MA 02110-1301, USA.
|
|
#
|
|
|
|
import poplib
|
|
import imaplib
|
|
import urllib2
|
|
import ConfigParser
|
|
import os
|
|
import subprocess
|
|
import gobject
|
|
|
|
# TODO : use gtk and glib from gi.repositrory
|
|
# (those conflict with pynotify and gi.repository.Notify is broken)
|
|
__builtins__.USE_GTK3 = False # (also prevents keyring.py from using GTK3)
|
|
|
|
if __builtins__.USE_GTK3:
|
|
from gi.repository import GLib, GdkPixbuf, Gtk, Notify
|
|
else:
|
|
Gtk = __import__("gtk")
|
|
import pynotify
|
|
|
|
import time
|
|
import email
|
|
from email.header import decode_header
|
|
import sys
|
|
import gettext
|
|
from keyring import Keyring
|
|
from utils import set_procname
|
|
import signal
|
|
import xdg.BaseDirectory as bd
|
|
|
|
|
|
gettext.bindtextdomain('mailnag', 'locale')
|
|
gettext.textdomain('mailnag')
|
|
_ = gettext.gettext
|
|
|
|
# Accounts and Account =================================================
|
|
class Account:
|
|
def __init__(self, name, server, user, password, imap, folder, port):
|
|
self.name = name
|
|
self.server = server
|
|
self.user = user
|
|
self.password = password
|
|
self.imap = imap # int
|
|
self.folder = folder
|
|
self.port = port
|
|
self.mail_count = 0
|
|
|
|
|
|
def get_connection(self): # get email server connection
|
|
if self.imap: # IMAP
|
|
try:
|
|
try:
|
|
if self.port == '':
|
|
srv = imaplib.IMAP4_SSL(self.server) # SSL
|
|
else:
|
|
srv = imaplib.IMAP4_SSL(self.server, self.port)
|
|
except:
|
|
if self.port == '':
|
|
srv = imaplib.IMAP4(self.server) # non SSL
|
|
else:
|
|
srv = imaplib.IMAP4(self.server, self.port)
|
|
srv.login(self.user, self.password)
|
|
except:
|
|
print "Warning: Cannot connect to IMAP account: %s. " \
|
|
"Next try in 30 seconds." % self.server
|
|
time.sleep(30) # wait 30 seconds
|
|
try:
|
|
try:
|
|
if self.port == '':
|
|
srv = imaplib.IMAP4_SSL(self.server) # SSL
|
|
else:
|
|
srv = imaplib.IMAP4_SSL(self.server, self.port)
|
|
except:
|
|
if self.port == '':
|
|
srv = imaplib.IMAP4(self.server) # non SSL
|
|
else:
|
|
srv = imaplib.IMAP4(self.server, self.port)
|
|
srv.login(self.user, self.password)
|
|
except:
|
|
check_interval = cfg.get('general', 'check_interval')
|
|
print "Error: Cannot connect to IMAP account: %s. " \
|
|
"Next try in %s minutes." % (self.server, check_interval)
|
|
srv = False
|
|
else: # POP
|
|
try:
|
|
try:
|
|
if self.port == '':
|
|
srv = poplib.POP3_SSL(self.server) # connect to Email-Server via SSL
|
|
else:
|
|
srv = poplib.POP3_SSL(self.server, self.port)
|
|
except:
|
|
if self.port == '':
|
|
srv = poplib.POP3(self.server) # non SSL
|
|
else:
|
|
srv = poplib.POP3(self.server, self.port)
|
|
srv.getwelcome()
|
|
srv.user(self.user)
|
|
srv.pass_(self.password)
|
|
except:
|
|
print "Warning: Cannot connect to POP account: %s. " \
|
|
"Next try in 30 seconds." % self.server
|
|
time.sleep(30) # wait 30 seconds
|
|
try:
|
|
try:
|
|
if self.port == '':
|
|
srv = poplib.POP3_SSL(self.server) # try it again
|
|
else:
|
|
srv = poplib.POP3_SSL(self.server, self.port)
|
|
except:
|
|
if self.port == '':
|
|
srv = poplib.POP3(self.server) # non SSL
|
|
else:
|
|
srv = poplib.POP3(self.server, self.port)
|
|
srv.getwelcome()
|
|
srv.user(self.user)
|
|
srv.pass_(self.password)
|
|
except:
|
|
check_interval = cfg.get('general', 'check_interval')
|
|
print "Error: Cannot connect to POP account: %s. " \
|
|
"Next try in %s minutes." % (self.server, check_interval)
|
|
srv = False
|
|
|
|
return srv # server object
|
|
|
|
|
|
class Accounts:
|
|
def __init__(self):
|
|
self.account = []
|
|
keyring = Keyring()
|
|
self.keyring_was_locked = keyring.was_locked
|
|
|
|
on = cfg.get('account', 'on')
|
|
name = cfg.get('account', 'name')
|
|
server = cfg.get('account', 'server')
|
|
user = cfg.get('account', 'user')
|
|
imap = cfg.get('account', 'imap')
|
|
folder = cfg.get('account', 'folder')
|
|
port = cfg.get('account', 'port')
|
|
|
|
separator = '|'
|
|
on_list = on.split(separator)
|
|
name_list = name.split(separator)
|
|
server_list = server.split(separator)
|
|
user_list = user.split(separator)
|
|
imap_list = imap.split(separator)
|
|
folder_list = folder.split(separator)
|
|
port_list = port.split(separator)
|
|
|
|
for i in range(len(name_list)): # iterate 0 to nr of elements in name_list
|
|
on = int(on_list[i])
|
|
name = name_list[i]
|
|
if not on or name == '': continue # ignore accounts that are off or have no name
|
|
server = server_list[i]
|
|
user = user_list[i]
|
|
imap = int(imap_list[i])
|
|
folder = folder_list[i]
|
|
port = port_list[i]
|
|
if imap: protocol = 'imap'
|
|
else: protocol = 'pop'
|
|
password = keyring.get(protocol, user, server)
|
|
self.account.append(Account(name, server, user, password, imap, folder, port))
|
|
|
|
|
|
def get_count(self, name): # get number of emails for this provider
|
|
count = 'error'
|
|
for acc in self.account:
|
|
if acc.name == name:
|
|
count = str(acc.mail_count)
|
|
break
|
|
if count == 'error':
|
|
print 'Cannot find account (get_count)'
|
|
return count
|
|
|
|
|
|
# Mail =================================================================
|
|
class Mail:
|
|
def __init__(self, seconds, subject, sender, datetime, id, provider):
|
|
self.seconds = seconds
|
|
self.subject = subject
|
|
self.sender = sender
|
|
self.datetime = datetime
|
|
self.id = id
|
|
self.provider = provider
|
|
|
|
|
|
# Mails ================================================================
|
|
class Mails:
|
|
def get_mail(self, sort_order):
|
|
mail_list = [] # initialize list of mails
|
|
mail_ids = [] # initialize list of mail ids
|
|
while not self.is_online(): time.sleep(5) # wait for internet connection
|
|
filter_on = int(cfg.get('filter', 'filter_on')) # get filter switch
|
|
|
|
for acc in accounts.account: # loop all email accounts
|
|
srv = acc.get_connection() # get server connection for this account
|
|
if srv == False:
|
|
continue # continue with next account if server is empty
|
|
elif acc.imap: # IMAP
|
|
folder_list = acc.folder.split(',') # make a list of folders
|
|
mail_count = 0 # reset email counter
|
|
if folder_list[0] == '':
|
|
folder_list = ['INBOX']
|
|
for folder in folder_list:
|
|
srv.select(folder.strip(), readonly=True) # select IMAP folder
|
|
status, data = srv.search(None, 'UNSEEN') # ALL or UNSEEN
|
|
if status != 'OK' or None in [d for d in data]:
|
|
print "Folder", folder, "in status", status, "| Data:", data, "\n"
|
|
continue # Bugfix LP-735071
|
|
for num in data[0].split():
|
|
typ, msg_data = srv.fetch(num, '(BODY.PEEK[HEADER])') # header only (without setting READ flag)
|
|
for response_part in msg_data:
|
|
if isinstance(response_part, tuple):
|
|
try:
|
|
msg = email.message_from_string(response_part[1])
|
|
except:
|
|
print "Could not get IMAP message:", response_part # debug
|
|
continue
|
|
try:
|
|
try:
|
|
sender = self.format_header('sender', msg['From']) # get sender and format it
|
|
except KeyError:
|
|
print "KeyError exception for key 'From' in message:", msg # debug
|
|
sender = self.format_header('sender', msg['from'])
|
|
except:
|
|
print "Could not get sender from IMAP message:", msg # debug
|
|
sender = "Error in sender"
|
|
try:
|
|
try:
|
|
datetime, seconds = self.format_header('date', msg['Date']) # get date and format it
|
|
except KeyError:
|
|
print "KeyError exception for key 'Date' in message:", msg # debug
|
|
datetime, seconds = self.format_header('date', msg['date'])
|
|
except:
|
|
print "Could not get date from IMAP message:", msg # debug
|
|
datetime = time.strftime('%Y.%m.%d %X') # take current time as "2010.12.31 13:57:04"
|
|
seconds = time.time() # take current time as seconds
|
|
try:
|
|
try:
|
|
subject = self.format_header('subject', msg['Subject']) # get subject and format it
|
|
except KeyError:
|
|
print "KeyError exception for key 'Subject' in message:", msg # debug
|
|
subject = self.format_header('subject', msg['subject'])
|
|
except:
|
|
print "Could not get subject from IMAP message:", msg # debug
|
|
subject = 'Error in subject'
|
|
try:
|
|
id = msg['Message-Id']
|
|
except:
|
|
print "Could not get id from IMAP message:", msg # debug
|
|
id = None # prepare emergency
|
|
|
|
if id == None or id == '':
|
|
id = str(hash(subject)) # create emergency id
|
|
|
|
if id not in mail_ids: # prevent duplicates caused by Gmail labels
|
|
if not (filter_on and self.in_filter(sender + subject)): # check filter
|
|
mail_list.append(Mail(seconds, subject, \
|
|
sender, datetime, id, acc.name))
|
|
mail_count += 1 # increment mail counter for this IMAP folder
|
|
mail_ids.append(id) # add id to list
|
|
acc.mail_count = mail_count # store number of emails per account
|
|
srv.close()
|
|
srv.logout()
|
|
else: # POP
|
|
mail_total = len(srv.list()[1]) # number of mails on the server
|
|
mail_count = 0 # reset number of relevant mails
|
|
for i in range(1, mail_total+1): # for each mail
|
|
try:
|
|
message = srv.top(i, 0)[1] # header plus first 0 lines from body
|
|
except:
|
|
print "Could not get POP message" # debug
|
|
continue
|
|
message_string = '\n'.join(message) # convert list to string
|
|
try:
|
|
msg = dict(email.message_from_string(message_string)) # put message into email object and make a dictionary
|
|
except:
|
|
print "Could not get msg from POP message:", message_string # debug
|
|
continue
|
|
try:
|
|
try:
|
|
sender = self.format_header('sender', msg['From']) # get sender and format it
|
|
except KeyError:
|
|
print "KeyError exception for key 'From' in message:", msg # debug
|
|
sender = self.format_header('sender', msg['from'])
|
|
except:
|
|
print "Could not get sender from POP message:", msg # debug
|
|
sender = "Error in sender"
|
|
try:
|
|
try:
|
|
datetime, seconds = self.format_header('date', msg['Date']) # get date and format it
|
|
except KeyError:
|
|
print "KeyError exception for key 'Date' in message:", msg # debug
|
|
datetime, seconds = self.format_header('date', msg['date'])
|
|
except:
|
|
print "Could not get date from POP message:", msg # debug
|
|
datetime = time.strftime('%Y.%m.%d %X') # take current time as "2010.12.31 13:57:04"
|
|
seconds = time.time() # take current time as seconds
|
|
try:
|
|
try:
|
|
subject = self.format_header('subject', msg['Subject']) # get subject and format it
|
|
except KeyError:
|
|
print "KeyError exception for key 'Subject' in message:", msg # debug
|
|
subject = self.format_header('subject', msg['subject'])
|
|
except:
|
|
print "Could not get subject from POP message:", msg
|
|
subject = 'Error in subject'
|
|
try:
|
|
uidl = srv.uidl(i) # get id
|
|
except:
|
|
print "Could not get id from POP message:", message # debug
|
|
uidl = None # prepare emergency
|
|
|
|
if uidl == None or uidl == '':
|
|
uidl = str(hash(subject)) # create emergency id
|
|
|
|
id = acc.user + uidl.split(' ')[2] # create unique id
|
|
if not (filter_on and self.in_filter(sender + subject)): # check filter
|
|
mail_list.append(Mail(seconds, subject, sender, \
|
|
datetime, id, acc.name))
|
|
mail_count += 1 # increment mail counter for this IMAP folder
|
|
acc.mail_count = mail_count # store number of emails per account
|
|
srv.quit() # disconnect from Email-Server
|
|
mail_list = self.sort_mails(mail_list, sort_order) # sort mails
|
|
sys.stdout.flush() # write stdout to log file
|
|
return mail_list
|
|
|
|
|
|
def is_online(self): # check for internet connection
|
|
try:
|
|
urllib2.urlopen("http://www.google.com/")
|
|
return True
|
|
except:
|
|
return False
|
|
|
|
|
|
def in_filter(self, sendersubject): # check if filter appears in sendersubject
|
|
status = False
|
|
filter_text = cfg.get('filter', 'filter_text')
|
|
filter_list = filter_text.replace('\n', '').split(',') # convert text to list
|
|
for filter_item in filter_list:
|
|
filter_stripped_item = filter_item.strip() # remove CR and white space
|
|
|
|
if len(filter_stripped_item) == 0:
|
|
continue
|
|
|
|
if filter_stripped_item.lower() in sendersubject.lower():
|
|
status = True # subject contains filter item
|
|
break
|
|
return status
|
|
|
|
|
|
def sort_mails(self, mail_list, sort_order): # sort mail list
|
|
sort_list = []
|
|
for mail in mail_list:
|
|
sort_list.append([mail.seconds, mail]) # extract seconds from mail instance
|
|
sort_list.sort() # sort asc
|
|
if sort_order == 'desc':
|
|
sort_list.reverse() # sort desc
|
|
mail_list = [] # sort by field 'seconds'
|
|
for mail in sort_list:
|
|
mail_list.append(mail[1]) # recreate mail_list
|
|
return mail_list
|
|
|
|
|
|
def format_header(self, field, content): # format sender, date, subject etc.
|
|
if field == 'sender':
|
|
try:
|
|
sender_real, sender_addr = email.utils.parseaddr(content) # get the two parts of the sender
|
|
sender_real = self.convert(sender_real)
|
|
sender_addr = self.convert(sender_addr)
|
|
sender = (sender_real, sender_addr) # create decoded tupel
|
|
except:
|
|
sender = ('','Error: cannot format sender')
|
|
|
|
sender_format = cfg.get('general', 'sender_format')
|
|
if sender_format == '1' and sender[0] != '': # real sender name if not empty
|
|
sender = sender_real
|
|
else:
|
|
sender = sender_addr
|
|
return sender
|
|
|
|
if field == 'date':
|
|
try:
|
|
parsed_date = email.utils.parsedate_tz(content) # make a 10-tupel (UTC)
|
|
seconds = email.utils.mktime_tz(parsed_date) # convert 10-tupel to seconds incl. timezone shift
|
|
tupel = time.localtime(seconds) # convert seconds to tupel
|
|
datetime = time.strftime('%Y.%m.%d %X', tupel) # convert tupel to string
|
|
except:
|
|
print 'Error: cannot format date:', content
|
|
datetime = time.strftime('%Y.%m.%d %X') # take current time as "2010.12.31 13:57:04"
|
|
seconds = time.time() # take current time as seconds
|
|
return datetime, seconds
|
|
|
|
if field == 'subject':
|
|
try:
|
|
subject = self.convert(content)
|
|
except:
|
|
subject = 'Error: cannot format subject'
|
|
return subject
|
|
|
|
|
|
def convert(self, raw_content): # decode and concatenate multi-coded header parts
|
|
content = raw_content.replace('\n',' ') # replace newline by space
|
|
content = content.replace('?==?','?= =?') # fix bug in email.header.decode_header()
|
|
tupels = decode_header(content) # list of (text_part, charset) tupels
|
|
content_list = []
|
|
for text, charset in tupels: # iterate parts
|
|
if charset == None: charset = 'latin-1' # set default charset for decoding
|
|
content_list.append(text.decode(charset, 'ignore')) # replace non-decodable chars with 'nothing'
|
|
decoded_content = ' '.join(content_list) # insert blanks between parts
|
|
decoded_content = decoded_content.strip() # get rid of whitespace
|
|
|
|
print " raw :", raw_content # debug
|
|
print " tupels :", tupels # debug
|
|
print " decoded:", decoded_content # debug
|
|
|
|
return decoded_content
|
|
|
|
|
|
# Misc =================================================================
|
|
def read_config(cfg_file): # read config file or create it
|
|
cfg = ConfigParser.RawConfigParser()
|
|
if not os.path.exists(cfg_file):
|
|
print 'Error: Cannot find configuration file: ', cfg_file
|
|
exit(1)
|
|
else:
|
|
cfg.read(cfg_file)
|
|
return cfg
|
|
|
|
|
|
def write_pid(): # write Mailnags's process id to file
|
|
pid_file = os.path.join(user_path, 'mailnag.pid')
|
|
f = open(pid_file, 'w')
|
|
f.write(str(os.getpid())) # get PID and write to file
|
|
f.close()
|
|
|
|
|
|
def delete_pid(): # delete file mailnag.pid
|
|
pid_file = os.path.join(user_path, 'mailnag.pid')
|
|
if os.path.exists(pid_file):
|
|
os.popen("rm " + pid_file) # delete it
|
|
|
|
|
|
def user_scripts(event, data): # process user scripts
|
|
if event == "on_email_arrival":
|
|
if cfg.get('script', 'script0_on') == '1' and data > 0: # on new emails
|
|
pathfile = cfg.get('script', 'script0_file') # get script pathfile
|
|
if pathfile != '' and os.path.exists(pathfile): # not empty and existing
|
|
pid.append(subprocess.Popen(pathfile)) # execute
|
|
else:
|
|
print 'Warning: cannot execute script:', pathfile
|
|
|
|
if cfg.get('script', 'script1_on') == '1' and data == 0: # on no new emails
|
|
pathfile = cfg.get('script', 'script1_file')
|
|
if pathfile != '' and os.path.exists(pathfile):
|
|
pid.append(subprocess.Popen(pathfile))
|
|
else:
|
|
print 'Warning: cannot execute script:', pathfile
|
|
|
|
elif cfg.get('script', 'script2_on') == '1' and event == "on_email_clicked":
|
|
pathfile = cfg.get('script', 'script2_file')
|
|
if pathfile != '' and os.path.exists(pathfile):
|
|
pid.append(subprocess.Popen([pathfile, data[0], data[1], data[2]])) # call script with 'sender, datetime, subject'
|
|
else:
|
|
print 'Warning: cannot execute script:', pathfile
|
|
|
|
elif cfg.get('script', 'script3_on') == '1' and event == "on_account_clicked":
|
|
pathfile = cfg.get('script', 'script3_file')
|
|
if pathfile != '' and os.path.exists(pathfile):
|
|
pid.append(subprocess.Popen([pathfile, data[0], data[1]])) # call script with account_name
|
|
else:
|
|
print 'Warning: cannot execute script:', pathfile
|
|
|
|
else:
|
|
return False
|
|
|
|
|
|
def commandExecutor(command, context_menu_command=None):
|
|
if context_menu_command != None: # check origin of command
|
|
command = context_menu_command
|
|
|
|
if command == 'clear': # clear indicator list immediatelly
|
|
mailchecker.clear()
|
|
elif command == 'exit': # exit mailnag immediatelly
|
|
delete_pid()
|
|
exit(0)
|
|
elif command == 'check': # check immediatelly for new emails
|
|
mailchecker.timeout()
|
|
else:
|
|
command_list = command.split(' ') # create list of arguments
|
|
pid.append(subprocess.Popen(command_list)) # execute 'command'
|
|
|
|
|
|
# MailChecker ============================================================
|
|
class MailChecker:
|
|
def __init__(self):
|
|
self.MAIL_LIST_LIMIT = 10 # prevent flooding of the messaging tray
|
|
self.mails = Mails() # create Mails object
|
|
self.reminder = Reminder() # create Reminder object
|
|
|
|
# TODO : gi.repository Notify seems to be unstable currently (set_hint and add_action crash)
|
|
# Notify.init(cfg.get('general', 'messagetray_label')) # initialize Notification
|
|
# self.notification = Notify.Notification.new(" ", None, None) # empty string will emit a gtk warning
|
|
# self.notification.set_hint("resident", True) # don't close when the bubble or actions are clicked
|
|
# self.notification.set_category("email")
|
|
# self.notification.add_action("open", _("Open in mail reader"), self.__notification_action_handler, None, None)
|
|
# self.notification.add_action("close", _("Close"), self.__notification_action_handler, None, None)
|
|
|
|
pynotify.init(cfg.get('general', 'messagetray_label')) # initialize Notification
|
|
|
|
self.notification = pynotify.Notification(" ", None, None) # empty string will emit a gtk warning
|
|
self.notification.set_hint("resident", True) # don't close when the bubble or actions are clicked
|
|
self.notification.set_category("email")
|
|
self.notification.add_action("open", _("Open in mail reader"), self.__notification_action_handler)
|
|
self.notification.add_action("close", _("Close"), self.__notification_action_handler)
|
|
|
|
|
|
def timeout(self):
|
|
print 'Checking email accounts at:', time.asctime() # debug
|
|
pid.kill() # kill all Zombies
|
|
|
|
if firstcheck: # Manual firststart
|
|
self.reminder.load()
|
|
|
|
self.mail_list = self.mails.get_mail('desc') # get all mails from all inboxes
|
|
|
|
all_mails = len(self.mail_list)
|
|
new_mails = 0
|
|
summary = ""
|
|
body = ""
|
|
|
|
for mail in self.mail_list:
|
|
if not self.reminder.contains(mail.id):
|
|
new_mails += 1
|
|
|
|
if all_mails == 0:
|
|
# no mails (e.g. email client has been launched) -> close notification
|
|
self.notification.close()
|
|
elif (firstcheck and all_mails > 0) or (new_mails > 0):
|
|
ubound = all_mails if all_mails <= self.MAIL_LIST_LIMIT else self.MAIL_LIST_LIMIT
|
|
|
|
for i in range(ubound):
|
|
body += self.mail_list[i].sender + ":\n<i>" + self.mail_list[i].subject + "</i>\n\n"
|
|
|
|
if all_mails > self.MAIL_LIST_LIMIT:
|
|
body += "<i>" + _("(and {0} more)").format(str(all_mails - self.MAIL_LIST_LIMIT)) + "</i>"
|
|
|
|
if all_mails > 1: # multiple new emails
|
|
summary = _("You have {0} new mails.").format(str(all_mails))
|
|
else:
|
|
summary = _("You have a new mail.")
|
|
|
|
if cfg.get('general', 'playsound') == '1': # play sound?
|
|
soundcommand = ['aplay', '-q', cfg.get('general', 'soundfile')]
|
|
pid.append(subprocess.Popen(soundcommand))
|
|
|
|
self.notification.update(summary, body, "mail-unread")
|
|
self.notification.show()
|
|
|
|
user_scripts("on_email_arrival", new_mails) # process user scripts
|
|
|
|
self.reminder.save(self.mail_list)
|
|
sys.stdout.flush() # write stdout to log file
|
|
return True
|
|
|
|
|
|
def __notification_action_handler(self, n, action):
|
|
self.notification.close()
|
|
|
|
if action == "open":
|
|
emailclient = cfg.get('general', 'mail_client').split(' ') # create list of command arguments
|
|
pid.append(subprocess.Popen(emailclient))
|
|
elif action == "close":
|
|
pass
|
|
|
|
|
|
def clear(self): # clear the messages list (not the menu entries)
|
|
show_only_new = bool(int(cfg.get('general', 'show_only_new'))) # get show_only_new flag
|
|
|
|
if show_only_new:
|
|
for mail in self.mail_list:
|
|
self.reminder.set_to_seen(mail.id)
|
|
|
|
self.reminder.save(self.mail_list) # save to mailnag.dat
|
|
else: # keep 'list' filled
|
|
self.mail_list = [] # clear mail list
|
|
|
|
|
|
# Reminder =============================================================
|
|
class Reminder(dict):
|
|
|
|
def load(self): # load last known messages from mailnag.dat
|
|
remember = cfg.get('general', 'remember')
|
|
dat_file = user_path + 'mailnag.dat'
|
|
we_have_a_file = os.path.exists(dat_file) # check if file exists
|
|
if remember == '1' and we_have_a_file:
|
|
f = open(dat_file, 'r') # open file again
|
|
for line in f:
|
|
stripedline = line.strip() # remove CR at the end
|
|
content = stripedline.split(',') # get all items from one line in a list: ["mailid", show_only_new flag"]
|
|
try:
|
|
self[content[0]] = content[1] # add to dict [id : flag]
|
|
except IndexError:
|
|
self[content[0]] = '0' # no flags in mailnag.dat
|
|
f.close() # close file
|
|
|
|
|
|
def save(self, mail_list): # save mail ids to file
|
|
dat_file = user_path + 'mailnag.dat'
|
|
f = open(dat_file, 'w') # open the file for overwrite
|
|
for m in mail_list:
|
|
try:
|
|
seen_flag = self[m.id]
|
|
except KeyError:
|
|
seen_flag = '0' # id of a new mail is not yet known to reminder
|
|
line = m.id + ',' + seen_flag + '\n' # construct line: email_id, seen_flag
|
|
f.write(line) # write line to file
|
|
self[m.id] = seen_flag # add to dict
|
|
f.close() # close the file
|
|
|
|
|
|
def contains(self, id): # check if mail id is in reminder list
|
|
try:
|
|
self[id]
|
|
return True
|
|
except KeyError:
|
|
return False
|
|
|
|
|
|
def set_to_seen(self, id): # set seen flag for this email on True
|
|
try:
|
|
self[id] = '1'
|
|
except KeyError:
|
|
pass
|
|
|
|
|
|
def unseen(self, id): # return True if flag == '0'
|
|
try:
|
|
flag = self[id]
|
|
if flag == '0':
|
|
return True
|
|
else:
|
|
return False
|
|
except KeyError:
|
|
return True
|
|
|
|
|
|
# Pid ==================================================================
|
|
class Pid(list): # List class to manage subprocess PIDs
|
|
|
|
def kill(self): # kill all zombies
|
|
removals = [] # list of PIDs to remove from list
|
|
for p in self:
|
|
returncode = p.poll() # get returncode of subprocess
|
|
if returncode == 0:
|
|
removals.append(p) # zombie will be removed
|
|
for p in removals:
|
|
self.remove(p) # remove non-zombies from list
|
|
|
|
|
|
def cleanup():
|
|
# clean up resources
|
|
try:
|
|
mailchecker.notification.close()
|
|
except NameError: pass
|
|
delete_pid()
|
|
|
|
# Main =================================================================
|
|
def main():
|
|
global cfg, user_path, accounts, mails, mailchecker, autostarted, firstcheck, pid
|
|
|
|
set_procname("mailnag")
|
|
|
|
signal.signal(signal.SIGTERM, cleanup)
|
|
|
|
try:
|
|
user_path = os.path.join(bd.xdg_config_home, "mailnag")
|
|
autostarted = False # default setting for command line argument
|
|
cmdline = sys.argv # get command line arguments
|
|
if len(cmdline) > 1: # do we have something in command line?
|
|
if cmdline[1] == 'autostarted':
|
|
autostarted = True
|
|
write_pid() # write Mailnag's process id to file
|
|
cfg = read_config(os.path.join(user_path, 'mailnag.cfg')) # get configuration from file
|
|
|
|
accounts = Accounts() # create Accounts object
|
|
if accounts.keyring_was_locked: firstcheck = False # required for correct sortorder in indi menu
|
|
else: firstcheck = True
|
|
|
|
pid = Pid() # create Pid object
|
|
mailchecker = MailChecker() # create MailChecker object
|
|
mailchecker.timeout() # immediate check, firstcheck=True
|
|
firstcheck = False # firstcheck is over
|
|
|
|
if cfg.get('general', 'check_once') == '0': # wanna do more than one email check?
|
|
check_interval = int(cfg.get('general', 'check_interval'))
|
|
gobject.timeout_add_seconds(60 * check_interval, mailchecker.timeout)
|
|
Gtk.main() # start Loop
|
|
|
|
cleanup()
|
|
return 0
|
|
except KeyboardInterrupt:
|
|
cleanup()
|
|
|
|
if __name__ == '__main__': main()
|