-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.lua
More file actions
43 lines (33 loc) · 944 Bytes
/
options.lua
File metadata and controls
43 lines (33 loc) · 944 Bytes
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
----------------------
-- Global Options --
----------------------
options.timeout = 120
options.namespace = true
options.subscribe = true
---------------
-- Options --
---------------
-- be a background daemon
my.daemon.enabled = true
-- wait X seconds between sort intervals
my.daemon.sleep = 600
-- force all accounts to be sorted (dissabled)
my.force = false
-- don't have more than one account logged in at a time
my.singlelogin = true
-- read passwords from encrypted file
my.crypt.enabled = true
-- there are X passwords in that file
my.crypt.num = 3
-- that file can be found there
my.crypt.path = '~/.imapfilter/passwords.enc'
--[[
The file is encrypted using the openssl(1) command line tool. For
example the "passwords.txt" file:
secret1
secret2
... is encrypted and saved to a file named "passwords.enc" with the
command:
$ openssl bf -in passwords.txt -out ~/.imapfilter/passwords.enc
$ rm passwords.txt
--]]