search for: avirtualhom

Displaying 9 results from an estimated 9 matches for "avirtualhom".

Did you mean: avirtualhome
2017 Apr 25
2
building Dovecot in Debian 9
> On Apr 25, 2017, at 2:16 PM, Peter van der Does <peter at avirtualhome.com> wrote: > > You might have to install the package default-libmysqlclient-dev from > the Debian repo. Isn?t that the MariaDB package? I don?t really want to mix MariaDB with MySQL (even though they are probably still compatible, but diverging as time passes). Dovecot does build w...
2017 Apr 25
0
building Dovecot in Debian 9
On 4/25/17 4:06 PM, KT Walrus wrote: > >> On Apr 25, 2017, at 2:16 PM, Peter van der Does <peter at avirtualhome.com> wrote: >> >> You might have to install the package default-libmysqlclient-dev from >> the Debian repo. > > Isn?t that the MariaDB package? I don?t really want to mix MariaDB with MySQL (even though they are probably still compatible, but diverging as time passes)....
2017 Apr 25
1
building Dovecot in Debian 9
Kevin, Regarding the configuration error, your missing a package: zlib1g-dev As far as the deprecation warning, it's a bit more complicated. The source of Dovecot needs to be patched to check for the OpenSSL version and depending on the version use a different DH_generate_numbers function. Regards, Peter -- Peter van der Does Facebook : https://www.facebook.com/petervanderdoes Twitter
2017 Apr 26
2
[BUG] OpenSSL function has been deprecated
In src/lib-ssl-iostream/iostream-openssl-params.c a call is made to DH_generate_parameters. This function has been deprecated since OpenSSL 0.9.8. With OpenSSL 1.1 compilation will throw an error. Not sure how to send patches, I don't even know if the patch I wrote actually works (I don't program in C, but gave it a shot anyway) but below is the patch. ---
2017 Apr 26
1
[BUG] OpenSSL function has been deprecated
> On April 26, 2017 at 3:15 PM Peter van der Does <peter at avirtualhome.com> wrote: > > > Patch v2 > > --- a/src/lib-ssl-iostream/iostream-openssl-params.c > +++ b/src/lib-ssl-iostream/iostream-openssl-params.c > @@ -13,10 +13,19 @@ generate_dh_parameters(int bitsize, buffer_t *output, const char **error_r) > { > DH *dh; >...
2017 Apr 25
2
building Dovecot in Debian 9
> On Apr 25, 2017, at 4:30 PM, Peter van der Does <peter at avirtualhome.com> wrote: > > The problem with making the Dovecot check for libmysqlclient.so.20 would > be that you have have to make sure older/newer packages are also > supported. The 20 extension is subject to changes. > > If I check the Oracle DEB file for Debian 9, it seems they do...
2017 Apr 25
2
building Dovecot in Debian 9
I?m trying to build Dovecot 2.2.29.1 in a Docker container today and have the following error in ./configure: checking for shadow.h... yes checking for pam_start in -lpam... no checking for auth_userokay... no checking for mysql_config... mysql_config checking for mysql_init in -lmysqlclient... no configure: error: Can't build with MySQL support: libmysqlclient not found #> find / -name
2017 Apr 25
0
building Dovecot in Debian 9
You might have to install the package default-libmysqlclient-dev from the Debian repo. Peter On 4/25/17 1:37 PM, KT Walrus wrote: > I?m trying to build Dovecot 2.2.29.1 in a Docker container today and have the following error in ./configure: > > checking for shadow.h... yes > checking for pam_start in -lpam... no > checking for auth_userokay... no > checking for
2017 Apr 26
0
[BUG] OpenSSL function has been deprecated
Patch v2 --- a/src/lib-ssl-iostream/iostream-openssl-params.c +++ b/src/lib-ssl-iostream/iostream-openssl-params.c @@ -13,10 +13,19 @@ generate_dh_parameters(int bitsize, buffer_t *output, const char **error_r) { DH *dh; unsigned char *p; - int len, len2; + int len, len2, success; +#if OPENSSL_VERSION_NUMBER >= 0x00908000L + success = DH_generate_parameters_ex(dh, bitsize,