Displaying 2 results from an estimated 2 matches for "ldap_basedn".
Did you mean:
ldap_base_dn
2020 Sep 01
1
OpenPVN authentication via Samba AD
Yes, went thru that page a few times and don't see an obvious error.
If I leave require strong auth as the default, then nothing works. Setting it to no allows diagnostics->authentication to return a positive result.
That is also the configuration that would succeed in querying the containers.
Without the 'no' setting it fails to bind.
What am i missing?
On September 1, 2020
2009 Oct 31
2
Post login script issue with pop3 protocol
Hi, all.
I want to track user last login data (ip address, login date, etc)
with dovecot, followed dovecot tutorial[1], and it now works with
IMAP, but failed with POP3. i don't know why.
My script:
----
LDAP_URI='ldap://127.0.0.1:389'
LDAP_BASEDN='o=domains,dc=iredmail,dc=org'
BIND_DN='cn=vmailadmin,dc=iredmail,dc=org'
BIND_PW='plain_passwd'
if [ X"${USER}" != X"dump-capability" ]; then
ldapmodify -c -x \
-H "${LDAP_URI}" \
-D "${BIND_DN}" \
-w...