Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-02-18 | Merge branch 'maint' | Zandra Hird | |
2015-02-07 | Correctly process anon_auth option for eldap:open() | Steven Danna | |
Previously, it was impossible to set anon_auth to true. Making it difficult to anonymously bind: 1> {ok, Conn} = eldap:open(["localhost"], [{anon_auth, true}]). {ok,<0.34.0>} 2> eldap:simple_bind(Conn, "", ""). {error,anonymous_auth} With this change: 1> {ok, Conn} = eldap:open(["localhost"], [{anon_auth, true}]). {ok,<0.34.0>} 2> eldap:simple_bind(Conn, "", ""). ok NB: Users could previously work around this by calling simple_bind as follows: eldap:simple_bind(Conn, anon, anon) | |||
2014-12-19 | Merge branch 'maint' | Hans Nilsson | |
2014-12-19 | eldap: fix merge conflict | Hans Nilsson | |
2014-12-17 | eldap: Remove trailing white space. | Hans Nilsson | |
2014-12-17 | eldap: Test cases for a few return values (open, close) | Hans Nilsson | |
2014-12-17 | eldap: updated eldap:close in tests | Hans Nilsson | |
2014-12-17 | eldap: Makes close/1 return as documented. | Hans Nilsson | |
2014-12-17 | eldap: Corrects SSL over IPv6 test. | Hans Nilsson | |
2014-12-17 | eldap: Removes eldap_misc_SUITE that is now included in eldap_basic_SUITE. | Hans Nilsson | |
2014-12-17 | eldap: Add encode/decode tests. | Hans Nilsson | |
2014-12-17 | eldap: Merge eldap_connections_SUITE into eldab_basic_SUITE | Hans Nilsson | |
2014-12-17 | eldap: Adds ssl to connections test suite | Hans Nilsson | |
2014-12-17 | eldap: Updates basic test suite | Hans Nilsson | |
- Splits one large testcase into smaller ones. - Makes tests independent - Adds some tests. | |||
2014-12-12 | Merge branch 'maint' | Hans Nilsson | |
2014-12-12 | Merge branch 'hans/eldap/doc_fixes/OTP-12354' into maint | Hans Nilsson | |
2014-12-12 | Merge branch 'maint' | Marcus Arendt | |
2014-12-12 | add missing release notes | Marcus Arendt | |
2014-12-08 | eldap: Clarifies documentation for start_tls and search | Hans Nilsson | |
2014-11-28 | Merge branch 'maint' | Hans Nilsson | |
* maint: eldap: Fix timeout missing in ssl:connect | |||
2014-11-27 | eldap: Fix timeout missing in ssl:connect | Hans Nilsson | |
2014-11-03 | Merge branch 'danielwhite/eldap-password-modify/OTP-12282' | Marcus Arendt | |
* danielwhite/eldap-password-modify/OTP-12282: eldap: Add support for modifying passwords | |||
2014-10-30 | eldap: vsn.mk updated. | Hans Nilsson | |
2014-10-30 | eldap: extensibleMatch added. | Hans Nilsson | |
2014-10-20 | eldap: Add support for modifying passwords | Daniel White | |
This implements the LDAP Password Modify Extended Operation (RFC 3062) with two new functions modify_password/3 and modify_password/4. The former is for directly setting passwords, and the latter is for users to change their own passwords. Since all three parameters are optional, I've opted to support this with the empty string rather than a property list. This seems consistent with other functions in the module (i.e. modify_dn/5). | |||
2014-10-14 | eldap: dynamically excludes unsupported ip versions. | Hans Nilsson | |
2014-09-29 | Prepare release | Erlang/OTP | |
2014-09-18 | eldap: update version | Hans Nilsson | |
2014-09-18 | eldap: New very basic test suite. | Hans Nilsson | |
2014-09-18 | eldap: Enable all tcp options in eldap:open | Hans Nilsson | |
Options: OTP-12171 Correct error msgs for Options: OTP-12182 | |||
2014-08-25 | Fix misspellings of 'another' | Tuncer Ayaz | |
2014-04-07 | Update release notes | Erlang/OTP | |
2014-03-21 | eldap: Fix asn.1 decode into binaries | Hans Nilsson | |
2014-03-20 | Introduce runtime_dependencies in .app files | Rickard Green | |
Most dependencies introduced are exactly the dependencies to other applications found by xref. That is, there might be real dependencies missing. There might also be pure debug dependencies listed that probably should be removed. Each application has to be manually inspected in order to ensure that all real dependencies are listed. All dependencies introduced are to application versions used in OTP 17.0. This since the previously used version scheme wasn't designed for this, and in order to minimize the work of introducing the dependencies. | |||
2014-02-25 | eldap: Prepare for release | Hans Nilsson | |
2014-02-25 | eldap: Prepare for release | Hans Nilsson | |
2014-02-24 | Merge branch 'efine/eldap-IPv6-connections/OTP-11753' | Henrik Nord | |
* efine/eldap-IPv6-connections/OTP-11753: Add support for IPv6 connections | |||
2014-02-24 | Merge branch 'bjorn/asn1/deprecations/OTP-11731' | Björn Gustavsson | |
* bjorn/asn1/deprecations/OTP-11731: Remove or de-emphasize references to the deprecated asn1rt module Deprecate asn1 functions | |||
2014-02-24 | Add test suites performing app and appup file checks | Tobias Schlager | |
Add the mentioned test suites for *all* library and touched non-library applications. | |||
2014-02-21 | Deprecate asn1 functions | Björn Gustavsson | |
Those asn1 functions are no longer needed because they all have better alternatives. | |||
2014-02-18 | Fix library application appup files | Tobias Schlager | |
As discussed in issue #240 *all* OTP library applications use the '.*' wildcard as up and down version. This makes library applications always up- and downgradeable. Using the wildcard version obsoletes all maintenance tasks regarding library applications' appup files. Additionally, it prevents upgrade problems caused by automatically included application dependencies when using reltool to create releases. Missing copyright headers are now consistently present. | |||
2014-02-09 | Add support for IPv6 connections | Edwin Fine | |
Currently, eldap assumes that only IPv4 will be used. This change enables callers to use IPv6 by including the [inet6] option in the eldap:open/2 options list. This adds inet6 to the gen_tcp or ssl connect. For backward compatibility, [inet] is the default if inet6 is omitted. | |||
2013-12-10 | Merge tag 'OTP_R16B03' | Magnus Lidén | |
The R16B03 release Conflicts: lib/sasl/vsn.mk | |||
2013-12-09 | Prepare releaseOTP_R16B03 | Erlang/OTP | |
2013-11-18 | Merge branch 'maint' | Fredrik Gustafsson | |
2013-11-14 | [eldap, inets]: fix testcases when ssl not is present | Fredrik Gustafsson | |
2013-10-29 | Merge branch 'maint' | Hans Nilsson | |
2013-10-29 | eldap: re-fixed earlier bug fix... | Hans Nilsson | |
2013-10-28 | eldap: minor doc change after review. | Hans Nilsson | |
2013-10-28 | eldap: Doc | Hans Nilsson | |