-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.lua
More file actions
58 lines (39 loc) · 866 Bytes
/
config.lua
File metadata and controls
58 lines (39 loc) · 866 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
--[[
Don't change this file!
Don't change this file!
Don't change this file!
Don't change this file!
Don't change this file!
--]]
-- get $HOME
local f = io.popen("echo -n $HOME")
local l = f:read("*a")
f:close()
-- fix include path
package.path = package.path .. ";" .. l .. "/.imapfilter/?.lua"
require "init/base"
---------------
-- Options --
---------------
require "options"
----------------
-- Accounts --
----------------
function my.init.accounts()
-- initialise accounts and fill my option arrays
dbgprint("Initialisiere Email-Konten")
password = my.init.crypt(my.crypt)
require "accounts"
end
--------------------
-- My functions --
--------------------
require "init/functions"
----------------------
-- Sort Functions --
----------------------
require "sort"
-----------
-- END --
-----------
my.main()