[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: [OpenLDAP][Authentication] SASL
- To: openldap-technical@openldap.org
- Subject: Re: [OpenLDAP][Authentication] SASL
- From: Timothy Keith <timothy.g.keith@gmail.com>
- Date: Mon, 8 Feb 2016 19:36:46 -0600
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; bh=n7fHLSBuifggIz2p/QVMBLMUqtwt3DZqsxu2jtNw9TU=; b=E9ZnoTTu1H5PKmfu6tJsVqhtDS8obq2W1Aa7oSzttsGLUohLjVd0pYknED2FlL8nQh Cc4Er89BobTpuk+w5oLhYQzKQHPnkLGct+sSiWUSjs1kQWFgo00zBRB5MMibLe9Nuwa0 GsEVGfs5paQOe8gGYHX0f/qaod3l4m9p8qn3XzuqDOQMMUfN7680aBlpaKnWostxwbzp x+DByQHBpY18Rne5rzMML8IkMCmI7ENO2QKX8hTmG87XotRLMvvQPwGX6gpTAh9AREqO D57YkSVzHdCC3h9h47NJWchfT141Xtr4qwEfVaa/Z5Qtx3n0O/W/c1k7pbI19fCWNTZV shWw==
- In-reply-to: <ACD6E395BAAE3E230E140A6A@192.168.1.9>
- References: <CAGraDoF0w4dpTqs4nmL3x5-1UY+zTYAfrY8t+Zavkz2S9rNc9A@mail.gmail.com> <CAGraDoG0dj=LpoTWxLUWz1xUBQ8683GNvFSf48BTNkzUxpDZXg@mail.gmail.com> <CAGraDoHDJ_=uo3swgyna1evP7Z_nRQVi5dsG_hVb0SCPLOj6qw@mail.gmail.com> <20160108203428.GE3710@dan.olp.net> <CAGraDoHjmdv_3b-50GSZj7+fAHu5G6r4HnMF7hZt=vEHs5dsCw@mail.gmail.com> <20160121203127.GH3666@dan.olp.net> <DUB126-W296DD26EC509970DBC7C8ECCC40@phx.gbl> <CAGraDoFsCxwzRAzAYhR9waGLxpe-zoeTDnha0za=ozEAeEfXrw@mail.gmail.com> <DUB126-W957A963A373AE40CB94470CCC40@phx.gbl> <CAGraDoGxGkat-V5mNhZg6R45WoyrtVs5zDp4WhP-ZeVh15iKGw@mail.gmail.com> <800DD943824F8BB3D2E8CA8B@192.168.1.9> <DUB126-W533C4343A0B19C298FBDFECCC40@phx.gbl> <CAGraDoFO2eHPfPW7kDiPC=JchxWfNyx+U6txBLxL4pZj6FnB_Q@mail.gmail.com> <2757FE21-16A6-488F-86BA-0668FB1EFDE5@ee.ryerson.ca> <0fb65f5c3399d1a2e36f2ed8e5d238c2.squirrel@webmail.ee.ryerson.ca> <CAGraDoEemPNCnZo=kno9Y5pK4_DWprUt=XVTEwtWYAj3-ALLUw@mail.gmail.com> <56B73EB9.7060005@stroeder.com> <CAGraDoE8SQcFy_Y9OJ-GhNVZU=EryUPkGO5+b==g06FQ7U45FA@mail.gmail.com> <ACD6E395BAAE3E230E140A6A@192.168.1.9>
On Mon, Feb 8, 2016 at 6:07 PM, Quanah Gibson-Mount <quanah@zimbra.com> wrote:
> --On Monday, February 08, 2016 6:04 PM -0600 Timothy Keith
> <timothy.g.keith@gmail.com> wrote:
>
>> On Sun, Feb 7, 2016 at 6:55 AM, Michael Ströder <michael@stroeder.com>
>> wrote:
>>>
>>> Timothy Keith wrote:
>>>>
>>>> How can I know that slapd was built with -enable-spasswd ?
>>>
>>>
>>> By looking at the configure command in the build script, spec file in
>>> source RPM or whatever produced the binary builds you're using.
>>>
>>> Ciao, Michael.
>>>
>>
>> I extracted the files from the yum binary packages. It is 2.4.40-7.
>> I don't think there is a way to determine what the configure options
>> were at build time.
>
>
> You need to download the *source* RPM not the *binary* RPM, as the source
> RPM includes the SPEC file used to build OpenLDAP.
>
> --Quanah
>
> --
>
> Quanah Gibson-Mount
> Platform Architect
> Zimbra, Inc.
> --------------------
> Zimbra :: the leader in open source messaging and collaboration
> A division of Synacor, Inc
This was found in a spec file from the src RPM : ./openldap-2/openldap.spec
%configure \
--enable-rlookups \
\
--with-tls=moznss \
--with-cyrus-sasl \
\
--enable-wrappers \
\
--enable-passwd \
\
--enable-cleartext \
--enable-crypt \
--enable-spasswd \
--disable-lmpasswd \
--enable-modules \
--disable-sql \
\
--libexecdir=%{_libdir} \
$@
Looks okay for pass-through. Thanks, Tim