Your message dated Sun, 15 May 2022 14:58:55 +0000
with message-id <e1nqfhv-0005qz...@fasolo.debian.org>
and subject line Bug#1006574: fixed in sendmail 8.17.1-2
has caused the Debian Bug report #1006574,
regarding sendmail: FTBFS with OpenSSL 3.0
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1006574: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1006574
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: sendmail
Version: 8.16.1-2
Severity: important
Tags: bookworm sid
User: pkg-openssl-de...@lists.alioth.debian.org
Usertags: ftbfs-3.0

Your package is failing to build using OpenSSL 3.0 with the
following error:

| gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong 
-Wformat -Werror=format-security -fPIC -I. -I../../include   
-I/usr/include/tirpc  -DSOCKETMAP -DMAP_REGEX -DNEWDB -DNIS -DNISPLUS -DLDAPMAP 
 -DHASFCHMOD=1 -DHASSETRLIMIT=1 -DHASFLOCK=0 -DUSESETEUID=1 -DHASGETUSERSHELL=1 
-DHAS_GETHOSTBYNAME2=1 -DNETINET6  
-D_PATH_SENDMAILPID=\"/var/run/sendmail/mta/sendmail.pid\" -DIP_SRCROUTE=1 
-DMILTER -DLDAP_REFERRALS -DLDAP_DEPRECATED  -DTCPWRAPPERS -DSASL 
-I/usr/include/sasl -DSTARTTLS  -D_FFR_QUEUE_SCHED_DBG -D_FFR_SKIP_DOMAINS 
-D_FFR_NO_PIPE -D_FFR_SHM_STATUS -D_FFR_RHS -D_FFR_MAIL_MACRO 
-D_FFR_QUEUEDELAY=1 -D_FFR_BADRCPT_SHUTDOWN -D_FFR_RESET_MACRO_GLOBALS 
-D_FFR_TLS_EC   -Wdate-time -D_FORTIFY_SOURCE=2  -c -o tls.o tls.c
| tls.c: In function ‘get_dh512’:
| tls.c:87:9: warning: ‘DH_new’ is deprecated: Since OpenSSL 3.0 
[-Wdeprecated-declarations]
|    87 |         if ((dh = DH_new()) == NULL)
|       |         ^~
| In file included from /usr/include/openssl/dsa.h:51,
|                  from /usr/include/openssl/x509.h:37,
|                  from /usr/include/openssl/ssl.h:31,
|                  from ./sendmail.h:46,
|                  from tls.c:11:
| /usr/include/openssl/dh.h:199:27: note: declared here
|   199 | OSSL_DEPRECATEDIN_3_0 DH *DH_new(void);
|       |                           ^~~~~~
| tls.c:99:11: error: invalid use of incomplete typedef ‘DH’ {aka ‘struct 
dh_st’}
|    99 |         dh->p = BN_bin2bn(dh512_p, sizeof(dh512_p), NULL);
|       |           ^~
| tls.c:100:11: error: invalid use of incomplete typedef ‘DH’ {aka 
‘struct dh_st’}
|   100 |         dh->g = BN_bin2bn(dh512_g, sizeof(dh512_g), NULL);
|       |           ^~
| tls.c:101:16: error: invalid use of incomplete typedef ‘DH’ {aka 
‘struct dh_st’}
|   101 |         if ((dh->p == NULL) || (dh->g == NULL))
|       |                ^~
| tls.c:101:35: error: invalid use of incomplete typedef ‘DH’ {aka 
‘struct dh_st’}
|   101 |         if ((dh->p == NULL) || (dh->g == NULL))
|       |                                   ^~
| tls.c:103:17: warning: ‘DH_free’ is deprecated: Since OpenSSL 3.0 
[-Wdeprecated-declarations]
|   103 |                 DH_free(dh);
|       |                 ^~~~~~~
| In file included from /usr/include/openssl/dsa.h:51,
|                  from /usr/include/openssl/x509.h:37,
|                  from /usr/include/openssl/ssl.h:31,
|                  from ./sendmail.h:46,
|                  from tls.c:11:
| /usr/include/openssl/dh.h:200:28: note: declared here
|   200 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh);
|       |                            ^~~~~~~
| tls.c: In function ‘get_dh2048’:
| tls.c:157:9: warning: ‘DH_new’ is deprecated: Since OpenSSL 3.0 
[-Wdeprecated-declarations]
|   157 |         if ((dh=DH_new()) == NULL)
|       |         ^~
| In file included from /usr/include/openssl/dsa.h:51,
|                  from /usr/include/openssl/x509.h:37,
|                  from /usr/include/openssl/ssl.h:31,
|                  from ./sendmail.h:46,
|                  from tls.c:11:
| /usr/include/openssl/dh.h:199:27: note: declared here
|   199 | OSSL_DEPRECATEDIN_3_0 DH *DH_new(void);
|       |                           ^~~~~~
| tls.c:169:11: error: invalid use of incomplete typedef ‘DH’ {aka 
‘struct dh_st’}
|   169 |         dh->p=BN_bin2bn(dh2048_p,sizeof(dh2048_p),NULL);
|       |           ^~
| tls.c:170:11: error: invalid use of incomplete typedef ‘DH’ {aka 
‘struct dh_st’}
|   170 |         dh->g=BN_bin2bn(dh2048_g,sizeof(dh2048_g),NULL);
|       |           ^~
| tls.c:171:16: error: invalid use of incomplete typedef ‘DH’ {aka 
‘struct dh_st’}
|   171 |         if ((dh->p == NULL) || (dh->g == NULL))
|       |                ^~
| tls.c:171:35: error: invalid use of incomplete typedef ‘DH’ {aka 
‘struct dh_st’}
|   171 |         if ((dh->p == NULL) || (dh->g == NULL))
|       |                                   ^~
| tls.c:173:17: warning: ‘DH_free’ is deprecated: Since OpenSSL 3.0 
[-Wdeprecated-declarations]
|   173 |                 DH_free(dh);
|       |                 ^~~~~~~
| In file included from /usr/include/openssl/dsa.h:51,
|                  from /usr/include/openssl/x509.h:37,
|                  from /usr/include/openssl/ssl.h:31,
|                  from ./sendmail.h:46,
|                  from tls.c:11:
| /usr/include/openssl/dh.h:200:28: note: declared here
|   200 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh);
|       |                            ^~~~~~~
| tls.c: In function ‘inittls’:
| tls.c:1186:13: warning: ‘RSA_generate_key’ is deprecated: Since OpenSSL 
0.9.8 [-Wdeprecated-declarations]
|  1186 |             (rsa_tmp = RSA_generate_key(RSA_KEYLENGTH, RSA_F4, NULL,
|       |             ^
| In file included from /usr/include/openssl/x509.h:36,
|                  from /usr/include/openssl/ssl.h:31,
|                  from ./sendmail.h:46,
|                  from tls.c:11:
| /usr/include/openssl/rsa.h:253:30: note: declared here
|   253 | OSSL_DEPRECATEDIN_0_9_8 RSA *RSA_generate_key(int bits, unsigned long 
e, void
|       |                              ^~~~~~~~~~~~~~~~
…
| make[2]: *** [<builtin>: tls.o] Error 1

For more information see:
https://www.openssl.org/docs/man3.0/man7/migration_guide.html

Sebastian

--- End Message ---
--- Begin Message ---
Source: sendmail
Source-Version: 8.17.1-2
Done: Andreas Beckmann <a...@debian.org>

We believe that the bug you reported is fixed in the latest version of
sendmail, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1006...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Beckmann <a...@debian.org> (supplier of updated sendmail package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Sun, 15 May 2022 16:14:12 +0200
Source: sendmail
Architecture: source
Version: 8.17.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group <packa...@qa.debian.org>
Changed-By: Andreas Beckmann <a...@debian.org>
Closes: 1006574 1009078
Changes:
 sendmail (8.17.1-2) unstable; urgency=medium
 .
   * QA upload.
   * Merge changes from 8.16.1-3.
   * Update to Standards-Version: 4.6.1.
   * Upload to unstable.  (Closes: #1006574, #1009078) (LP: #1956191, #1970472)
Checksums-Sha1:
 667f3003d46d494db4b9eb63914e497fdd011691 2821 sendmail_8.17.1-2.dsc
 22890d8423fb9352b08fc2e4cb45f8893fae8be1 240908 sendmail_8.17.1-2.debian.tar.xz
 fc075c3277770fc1eebd1db144c6f67528599c5b 6181 
sendmail_8.17.1-2_source.buildinfo
Checksums-Sha256:
 deac66b71cbe1fd1ac2ffb507ca7b6f147c790f37371dcb12f44a7af145429b5 2821 
sendmail_8.17.1-2.dsc
 79a86eb2377406405d2b08f010f97ee149d1ebb7b657e4b47d988533717a2a97 240908 
sendmail_8.17.1-2.debian.tar.xz
 c9735245b4e2eee3d19d71f59f0f9564dcc093950777cc6f77359b39d2323e59 6181 
sendmail_8.17.1-2_source.buildinfo
Files:
 082189afba67104274d3e08b1dcdc633 2821 mail optional sendmail_8.17.1-2.dsc
 2c443f34a463c8b8538ab1a41e55052f 240908 mail optional 
sendmail_8.17.1-2.debian.tar.xz
 ab8f756acfa230ffc13da08732dd1c9d 6181 mail optional 
sendmail_8.17.1-2_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJEBAEBCAAuFiEE6/MKMKjZxjvaRMaUX7M/k1np7QgFAmKBC1AQHGFuYmVAZGVi
aWFuLm9yZwAKCRBfsz+TWentCIlxD/9BZbAUr/HMuBevToe/w80VLDdeAwf6mG72
ffCkQzXOXqP7C0FwIt9WQmX27248Kchv1z6KGNIqZRa6eViINozvHPxU4n2gkmLO
kT7rcPf7G4/QiVU1tgofKCJmP0mKkiONNG/NiWWDwCHJOCvW4255toewYP+u6zf1
/+4rXvY9dHnMVcCpduxvIX+o9P/vNsvNXmAGALhJucwm9L2IWDnSxltrmHMHtSYK
tIC9LpNu8A1tjPnynmoV5a2Ug56bg021qYSbpDCHsgiYuFdWkAeODsPaHdA7C3PL
fO5zCVpXDOJOnT27eR4iCL2/zc0Mm/qCrO47gVGTsNc9CEsTHIqNoJLNnkEk8QsT
rD0fDvVwMqfr8Djc4PHrswX2yfeJ3bHbkZyuSv+ngRlqsDgYGvBOqndQd0ZUW921
WZkr5M9M1o1esSiAcw43q2dyDVj+JAwuHZ2u9dMPR0VFrBtnaAd0qPYBV8qgTqzj
llta8rtz5ITH/jLrkBHp1mBGg3NGMFaXMBYUDytIedEP1fQsG9hm2NGgJ4CrbwJI
SjvzNpAeYAE6E/0koNA0UyI+nyYvDg+yerTRyvShRXLsOGb/5P2LlX89vT3nQy9r
ClMyVFsaostl3itZ9rEkL3P5X2SWMH42ZS/h+Pm5iKToB5SCWgDhKetv5Jp7YBRK
oJCwv1HlOg==
=4tHS
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to