2016-05-23 23:07:05 +02:00
|
|
|
{ stdenv, lib, fetchurl, autoconf, automake, libtool, bison
|
2016-05-22 22:22:39 +02:00
|
|
|
, libasr, libevent, zlib, openssl, db, pam
|
2016-05-23 23:07:05 +02:00
|
|
|
|
|
|
|
# opensmtpd requires root for no reason to encrypt passwords, this patch fixes it
|
|
|
|
# see also https://github.com/OpenSMTPD/OpenSMTPD/issues/678
|
|
|
|
, unpriviledged_smtpctl_encrypt ? true
|
|
|
|
|
2018-05-18 23:15:07 +02:00
|
|
|
# Deprecated: use the subaddressing-delimiter in the config file going forward
|
2016-05-23 23:07:05 +02:00
|
|
|
, tag_char ? null
|
2015-04-23 00:37:51 +02:00
|
|
|
}:
|
2013-07-15 15:05:03 +02:00
|
|
|
|
2018-05-18 23:15:07 +02:00
|
|
|
if (tag_char != null)
|
|
|
|
then throw "opensmtpd: the tag_char argument is deprecated as it can now be specified at runtime via the 'subaddressing-delimiter' option of the configuration file"
|
|
|
|
else stdenv.mkDerivation rec {
|
2013-07-15 15:05:03 +02:00
|
|
|
name = "opensmtpd-${version}";
|
2018-05-18 23:15:07 +02:00
|
|
|
version = "6.0.3p1";
|
2013-07-15 15:05:03 +02:00
|
|
|
|
2015-04-23 00:37:51 +02:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool bison ];
|
|
|
|
buildInputs = [ libasr libevent zlib openssl db pam ];
|
2013-07-15 15:05:03 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-15 17:19:51 +02:00
|
|
|
url = "https://www.opensmtpd.org/archives/${name}.tar.gz";
|
2018-05-18 23:15:07 +02:00
|
|
|
sha256 = "291881862888655565e8bbe3cfb743310f5dc0edb6fd28a889a9a547ad767a81";
|
2015-02-13 01:24:05 +01:00
|
|
|
};
|
2013-07-15 15:05:03 +02:00
|
|
|
|
2015-09-26 09:40:44 +02:00
|
|
|
patches = [ ./proc_path.diff ];
|
|
|
|
|
2016-05-23 23:07:05 +02:00
|
|
|
postPatch = with builtins; with lib;
|
|
|
|
optionalString unpriviledged_smtpctl_encrypt ''
|
|
|
|
substituteInPlace smtpd/smtpctl.c --replace \
|
|
|
|
'if (geteuid())' \
|
|
|
|
'if (geteuid() != 0 && !(argc > 1 && !strcmp(argv[1], "encrypt")))'
|
2017-07-13 18:50:29 +02:00
|
|
|
substituteInPlace mk/smtpctl/Makefile.in --replace "chmod 2555" "chmod 0555"
|
2016-05-23 23:07:05 +02:00
|
|
|
'';
|
|
|
|
|
2015-02-13 01:24:05 +01:00
|
|
|
configureFlags = [
|
2015-04-23 00:37:51 +02:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2013-07-15 15:05:03 +02:00
|
|
|
"--with-mantype=doc"
|
2016-05-27 14:36:42 +02:00
|
|
|
"--with-auth-pam"
|
|
|
|
"--without-auth-bsdauth"
|
|
|
|
"--with-path-socket=/run"
|
2016-05-22 22:22:39 +02:00
|
|
|
"--with-user-smtpd=smtpd"
|
|
|
|
"--with-user-queue=smtpq"
|
|
|
|
"--with-group-queue=smtpq"
|
2016-05-27 14:36:42 +02:00
|
|
|
"--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt"
|
|
|
|
"--with-libevent=${libevent.dev}"
|
|
|
|
"--with-table-db"
|
2015-02-13 01:24:05 +01:00
|
|
|
];
|
2013-07-15 15:05:03 +02:00
|
|
|
|
2015-04-23 00:37:51 +02:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
];
|
|
|
|
|
2016-05-22 22:22:39 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-12-18 20:04:22 +01:00
|
|
|
homepage = https://www.opensmtpd.org/;
|
2013-07-15 15:05:03 +02:00
|
|
|
description = ''
|
|
|
|
A free implementation of the server-side SMTP protocol as defined by
|
2014-11-11 14:20:43 +01:00
|
|
|
RFC 5321, with some additional standard extensions
|
2013-07-15 15:05:03 +02:00
|
|
|
'';
|
2016-05-22 22:22:39 +02:00
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ rickynils obadz ];
|
2013-07-15 15:05:03 +02:00
|
|
|
};
|
|
|
|
}
|