blob: 1846de772994d0aa3f7c4b6ddb4394ccbdce58c0 (
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
|
pykolabdir = $(datadir)/$(PACKAGE)
pykolab_PYTHON = $(wildcard *.py)
pykolab_authdir = $(datadir)/$(PACKAGE)/auth
pykolab_auth_PYTHON = \
auth/__init__.py
pykolab_auth_ldapdir = $(datadir)/$(PACKAGE)/auth/ldap
pykolab_auth_ldap_PYTHON = \
auth/ldap/__init__.py
pykolab_clidir = $(datadir)/$(PACKAGE)/cli
pykolab_cli_PYTHON = \
cli/__init__.py
pykolab_imapdir = $(datadir)/$(PACKAGE)/imap
pykolab_imap_PYTHON = \
imap/__init__.py
pykolab_pluginsdir = $(datadir)/$(PACKAGE)/plugins
pykolab_plugins_PYTHON = \
plugins/__init__.py
pykolab_plugins_defaultfoldersdir = $(datadir)/$(PACKAGE)/plugins/defaultfolders
pykolab_plugins_defaultfolders_PYTHON = \
plugins/defaultfolders/__init__.py
pykolab_plugins_dynamicquotadir = $(datadir)/$(PACKAGE)/plugins/dynamicquota
pykolab_plugins_dynamicquota_PYTHON = \
plugins/dynamicquota/__init__.py
pykolab_plugins_recipientpolicydir = $(datadir)/$(PACKAGE)/plugins/recipientpolicy
pykolab_plugins_recipientpolicy_PYTHON = \
plugins/recipientpolicy/__init__.py
pykolab_setupdir = $(datadir)/$(PACKAGE)/setup
pykolab_setup_PYTHON = \
setup/imap.py \
setup/__init__.py \
setup/ldap_setup.py
pykolab_testsdir = $(datadir)/$(PACKAGE)/tests
pykolab_setup_PYTHON = \
tests/calendar.py \
tests/constants.py \
tests/contacts.py \
tests/create-contacts.py \
tests/__init__.py \
tests/mail.py
pykolab_tests_zpushdir = $(datadir)/$(PACKAGE)/tests/zpush
pykolab_tests_zpush_PYTHON = \
tests/zpush/test_000_000.py \
tests/zpush/test_000_001.py \
tests/zpush/__init__.py
|