blob: 83a4ec3811c6f713cf940eef668ae7b98c1f9287 (
plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
|
pykolabdir = $(pythondir)/$(PACKAGE)
pykolab_PYTHON = $(wildcard *.py)
pykolab_authdir = $(pythondir)/$(PACKAGE)/auth
pykolab_auth_PYTHON = \
auth/__init__.py
pykolab_auth_ldapdir = $(pythondir)/$(PACKAGE)/auth/ldap
pykolab_auth_ldap_PYTHON = \
auth/ldap/__init__.py
pykolab_clidir = $(pythondir)/$(PACKAGE)/cli
pykolab_cli_PYTHON = \
$(wildcard cli/*.py)
pykolab_clitelemetrydir = $(pythondir)/$(PACKAGE)/cli/telemetry
pykolab_clitelemetry_PYTHON = \
$(wildcard cli/telemetry/*.py)
pykolab_confdir = $(pythondir)/$(PACKAGE)/conf
pykolab_conf_PYTHON = \
conf/defaults.py \
conf/__init__.py
if ENTERPRISE
pykolab_conf_PYTHON += conf/entitlement.py
endif
pykolab_imapdir = $(pythondir)/$(PACKAGE)/imap
pykolab_imap_PYTHON = \
imap/__init__.py \
imap/cyrus.py
pykolab_pluginsdir = $(pythondir)/$(PACKAGE)/plugins
pykolab_plugins_PYTHON = \
plugins/__init__.py
pykolab_plugins_defaultfoldersdir = $(pythondir)/$(PACKAGE)/plugins/defaultfolders
pykolab_plugins_defaultfolders_PYTHON = \
plugins/defaultfolders/__init__.py
pykolab_plugins_dynamicquotadir = $(pythondir)/$(PACKAGE)/plugins/dynamicquota
pykolab_plugins_dynamicquota_PYTHON = \
plugins/dynamicquota/__init__.py
pykolab_plugins_recipientpolicydir = $(pythondir)/$(PACKAGE)/plugins/recipientpolicy
pykolab_plugins_recipientpolicy_PYTHON = \
plugins/recipientpolicy/__init__.py
pykolab_setupdir = $(pythondir)/$(PACKAGE)/setup
pykolab_setup_PYTHON = \
setup/imap_setup.py \
setup/__init__.py \
setup/ldap_setup.py
pykolab_testsdir = $(pythondir)/$(PACKAGE)/tests
pykolab_tests_PYTHON = \
tests/calendar.py \
tests/constants.py \
tests/contacts.py \
tests/create-contacts.py \
tests/__init__.py \
tests/mail.py
pykolab_tests_zpushdir = $(pythondir)/$(PACKAGE)/tests/zpush
pykolab_tests_zpush_PYTHON = \
tests/zpush/test_000_000.py \
tests/zpush/test_000_001.py \
tests/zpush/__init__.py
|