mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 07:33:48 +02:00
opensmtpd: update to 6.7.1p1.
This commit is contained in:
parent
e35f53021b
commit
d0e7e427b3
2 changed files with 3 additions and 28 deletions
|
@ -1,24 +0,0 @@
|
||||||
Else it smashes the stack when IPv6 is used.
|
|
||||||
|
|
||||||
--- smtpd/mta_session.c
|
|
||||||
+++ smtpd/mta_session.c
|
|
||||||
@@ -1811,15 +1811,15 @@
|
|
||||||
static void
|
|
||||||
mta_connected(struct mta_session *s)
|
|
||||||
{
|
|
||||||
- struct sockaddr sa_src;
|
|
||||||
- struct sockaddr sa_dest;
|
|
||||||
+ struct sockaddr_storage sa_src;
|
|
||||||
+ struct sockaddr_storage sa_dest;
|
|
||||||
int sa_len;
|
|
||||||
|
|
||||||
log_info("%016"PRIx64" mta connected", s->id);
|
|
||||||
|
|
||||||
- if (getsockname(io_fileno(s->io), &sa_src, &sa_len) == -1)
|
|
||||||
+ if (getsockname(io_fileno(s->io), (struct sockaddr *)(void *)&sa_src, &sa_len) == -1)
|
|
||||||
bzero(&sa_src, sizeof sa_src);
|
|
||||||
- if (getpeername(io_fileno(s->io), &sa_dest, &sa_len) == -1)
|
|
||||||
+ if (getpeername(io_fileno(s->io), (struct sockaddr *)(void *)&sa_dest, &sa_len) == -1)
|
|
||||||
bzero(&sa_dest, sizeof sa_dest);
|
|
||||||
|
|
||||||
mta_report_link_connect(s,
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'opensmtpd'
|
# Template file for 'opensmtpd'
|
||||||
pkgname=opensmtpd
|
pkgname=opensmtpd
|
||||||
version=6.7.0p1
|
version=6.7.1p1
|
||||||
revision=2
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--sysconfdir=/etc/smtpd --sbindir=/usr/bin
|
configure_args="--sysconfdir=/etc/smtpd --sbindir=/usr/bin
|
||||||
--with-path-socket=/run --with-path-pidfile=/run
|
--with-path-socket=/run --with-path-pidfile=/run
|
||||||
|
@ -27,7 +27,7 @@ maintainer="Leah Neukirchen <leah@vuxu.org>"
|
||||||
license="BSD-3-Clause, ISC, MIT"
|
license="BSD-3-Clause, ISC, MIT"
|
||||||
homepage="https://www.opensmtpd.org"
|
homepage="https://www.opensmtpd.org"
|
||||||
distfiles="https://www.opensmtpd.org/archives/${pkgname}-${version}.tar.gz"
|
distfiles="https://www.opensmtpd.org/archives/${pkgname}-${version}.tar.gz"
|
||||||
checksum=c13f5dd7b9cb9421eabb62068537d90b0441cdb3ca2e5c1e753d7aee01b90bb9
|
checksum=7478e918b41e734a39ad082df55cb2607f0933a506fab2c3dd3554a95cdf08ca
|
||||||
provides="smtp-forwarder-0_1 smtp-server-0_1"
|
provides="smtp-forwarder-0_1 smtp-server-0_1"
|
||||||
replaces="smtp-forwarder>=0 smtp-server>=0"
|
replaces="smtp-forwarder>=0 smtp-server>=0"
|
||||||
system_accounts="_smtpd _smtpq"
|
system_accounts="_smtpd _smtpq"
|
||||||
|
@ -51,7 +51,6 @@ pre_configure() {
|
||||||
sed -ri 's,/etc/mail,/etc/smtpd,g' smtpd/smtpd.conf
|
sed -ri 's,/etc/mail,/etc/smtpd,g' smtpd/smtpd.conf
|
||||||
}
|
}
|
||||||
post_install() {
|
post_install() {
|
||||||
rm -f ${DESTDIR}/usr/include/asr.h
|
|
||||||
for f in newaliases mailq makemap sendmail; do
|
for f in newaliases mailq makemap sendmail; do
|
||||||
ln -s smtpctl ${DESTDIR}/usr/bin/$f
|
ln -s smtpctl ${DESTDIR}/usr/bin/$f
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Reference in a new issue