rabbitmq-server/deps/rabbitmq_auth_backend_ldap/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.5 KiB
Makefile
Raw Permalink Normal View History

2015-10-19 16:29:55 +08:00
PROJECT = rabbitmq_auth_backend_ldap
PROJECT_DESCRIPTION = RabbitMQ LDAP Authentication Backend
PROJECT_MOD = rabbit_auth_backend_ldap_app
2015-10-19 16:29:55 +08:00
# Note:
# Use of these default values in calls to get_expected_env_str/2
define PROJECT_ENV
[
{servers, undefined},
{user_bind_pattern, none},
{user_dn_pattern, "$${username}"},
{dn_lookup_attribute, none},
{dn_lookup_base, none},
{group_lookup_base, none},
{dn_lookup_bind, as_user},
{other_bind, as_user},
{anon_auth, false},
{vhost_access_query, {constant, true}},
{resource_access_query, {constant, true}},
{topic_access_query, {constant, true}},
{tag_queries, [{administrator, {constant, false}}]},
{use_ssl, false},
{use_starttls, false},
{ssl_options, []},
{port, 389},
{timeout, infinity},
{log, false},
{pool_size, 64},
2018-03-14 22:07:35 +08:00
{idle_timeout, 300000}
]
endef
2015-10-19 16:29:55 +08:00
2016-12-07 22:33:04 +08:00
define PROJECT_APP_EXTRA_KEYS
{broker_version_requirements, []}
endef
LOCAL_DEPS = eldap public_key
DEPS = rabbit_common rabbit
TEST_DEPS = ct_helper rabbitmq_ct_helpers rabbitmq_ct_client_helpers amqp_client
2016-06-27 22:09:46 +08:00
dep_ct_helper = git https://github.com/extend/ct_helper.git master
2015-10-19 16:29:55 +08:00
DEP_EARLY_PLUGINS = rabbit_common/mk/rabbitmq-early-plugin.mk
2015-10-19 16:29:55 +08:00
DEP_PLUGINS = rabbit_common/mk/rabbitmq-plugin.mk
include ../../rabbitmq-components.mk
include ../../erlang.mk