apps / imapfilter / contact@paris12.pcf.fr.lua /
Newer Older
12 lines | 0.415kb
ajout système d'impression p...
seb authored on 2019-12-22
1
account1 = {                                            
2
	connect = function ()                                              
3
		account1.account = IMAP(account1.credentials) 
4
		account1.inbox = account1.account['INBOX'] 
5
		return account1.account 
6
	end,
7
	age_table = {           
8
		{ folder = 'INBOX',         age = 30  },
9
		{ folder = 'Deleted Items', age = 10  },
10
		{ folder = 'Sent',          age = 15  },
11
	},
12
}