Re: Which DKIM application for postfix 3.9.0

2024-03-11 Thread Dave Ryan

Sorry, wrong group.   Please ignore.

On 03/07/24 13:50, dove...@outputservices.com wrote:

I am upgrading to postfix 3.9.0.

I have not used DKIM in previous postfix installs, but I would like to 
start now with the new google rules.


I have done some research and opendkim is the most recommended, 
however, other research states the opendkim has been abandoned by it's 
maintainers.


So I am looking for a good alternative dkim software that will work 
with postfix that I can compile myself.


I do not run on any linux version, so therefore I can not just apt-get 
a new dkim application.


I run Solaris and therefore need to compile my applications, postfix 
and dkim.


Any good suggestions will be appreciated.


___
dovecot mailing list -- dovecot@dovecot.org
To unsubscribe send an email to dovecot-le...@dovecot.org


Re: LDAP and dovecot

2014-09-26 Thread Dave Ryan
Thank you all for your assistance.

I was able to locate another web site that mentioned I needed to compile 
dovecot with my openldap libraries.

I then compiled dovecot in the following manner:

CPPFLAGS=-I/usr/local/openldap/include \
LDFLAGS='-L/usr/local/openldap/lib -R/usr/local/openldap/lib' \
 ./configure --prefix=/tmp/tocevod --with-ssl=openssl --with-solr --with-zlib 
--with-bzlib --with-ldap=yes

This then included the openldap libraries. I tested access and now it works.

ldd on /dovecot/libexec/dovecot/auth showed the openldap libraries.

libdovecot.so.0 =   
/usr/local/tools/dovecot/lib/dovecot/libdovecot.so.0
libpam.so.1 =   /usr/lib/libpam.so.1
libldap-2.4.so.2 =  /usr/local/openldap/lib/libldap-2.4.so.2
libsasl.so.1 =  /usr/lib/libsasl.so.1
libssl.so.0.9.7 =   /usr/sfw/lib/libssl.so.0.9.7
libcrypto.so.0.9.7 =/usr/sfw/lib/libcrypto.so.0.9.7
liblber-2.4.so.2 =  /usr/local/openldap/lib/liblber-2.4.so.2
libresolv.so.2 =/usr/lib/libresolv.so.2
libgen.so.1 =   /usr/lib/libgen.so.1
librt.so.1 =/usr/lib/librt.so.1
libnsl.so.1 =   /usr/lib/libnsl.so.1
libsocket.so.1 =/usr/lib/libsocket.so.1
libsendfile.so.1 =  /usr/lib/libsendfile.so.1
libc.so.1 = /usr/lib/libc.so.1
libgcc_s.so.1 = /usr/sfw/lib/libgcc_s.so.1
libcmd.so.1 =   /usr/lib/libcmd.so.1
libmd.so.1 =/usr/lib/libmd.so.1
libaio.so.1 =   /usr/lib/libaio.so.1
libmp.so.2 =/usr/lib/libmp.so.2
libscf.so.1 =   /usr/lib/libscf.so.1
libdoor.so.1 =  /usr/lib/libdoor.so.1
libuutil.so.1 = /usr/lib/libuutil.so.1
libssl_extra.so.0.9.7 = /usr/sfw/lib/libssl_extra.so.0.9.7
libcrypto_extra.so.0.9.7 =  /usr/sfw/lib/libcrypto_extra.so.0.9.7
libm.so.2 = /usr/lib/libm.so.2

Thanks again.