From 67ca124e489f2070cb1fb6d87538fc3184df806b Mon Sep 17 00:00:00 2001 From: alinmear Date: Sun, 2 Jul 2017 22:14:49 +0200 Subject: [PATCH] Update Makefile to reflect recent changes --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ceb734f7..a1253d3b 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ NAME = tvial/docker-mailserver:testing all: build-no-cache generate-accounts run fixtures tests clean -all-fast: build generate-accounts run fixtures tests #clean +all-fast: build generate-accounts run fixtures tests clean no-build: generate-accounts run fixtures tests clean build-no-cache: @@ -108,7 +108,9 @@ run: -e LDAP_SEARCH_BASE=ou=people,dc=localhost,dc=localdomain \ -e LDAP_BIND_DN=cn=admin,dc=localhost,dc=localdomain \ -e LDAP_BIND_PW=admin \ - -e LDAP_QUERY_FILTER="(&(mail=%s)(mailEnabled=TRUE))" \ + -e LDAP_QUERY_FILTER_USER="(&(mail=%s)(mailEnabled=TRUE))" \ + -e LDAP_QUERY_FILTER_GROUP="(&(mailGroupMember=%s)(mailEnabled=TRUE))" \ + -e LDAP_QUERY_FILTER_ALIAS="(&(mailAlias=%s)(mailEnabled=TRUE))" \ -e ENABLE_SASLAUTHD=1 \ -e SASLAUTHD_MECHANISMS=ldap \ -e SASLAUTHD_LDAP_SERVER=ldap \