nixpkgs/pkgs/servers/mail/opensmtpd/default.nix

67 lines
2.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, autoconf, automake, libtool, bison
2016-05-22 20:22:39 +00:00
, libasr, libevent, zlib, openssl, db, pam
# 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 21:15:07 +00:00
# Deprecated: use the subaddressing-delimiter in the config file going forward
, tag_char ? null
2015-04-22 22:37:51 +00:00
}:
2018-05-18 21:15:07 +00: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 {
name = "opensmtpd-${version}";
2018-05-18 21:15:07 +00:00
version = "6.0.3p1";
2015-04-22 22:37:51 +00:00
nativeBuildInputs = [ autoconf automake libtool bison ];
buildInputs = [ libasr libevent zlib openssl db pam ];
src = fetchurl {
url = "https://www.opensmtpd.org/archives/${name}.tar.gz";
2018-05-18 21:15:07 +00:00
sha256 = "291881862888655565e8bbe3cfb743310f5dc0edb6fd28a889a9a547ad767a81";
2015-02-13 00:24:05 +00:00
};
2015-09-26 07:40:44 +00:00
patches = [ ./proc_path.diff ];
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")))'
substituteInPlace mk/smtpctl/Makefile.in --replace "chmod 2555" "chmod 0555"
'';
2015-02-13 00:24:05 +00:00
configureFlags = [
2015-04-22 22:37:51 +00:00
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-mantype=doc"
"--with-auth-pam"
"--without-auth-bsdauth"
"--with-path-socket=/run"
2016-05-22 20:22:39 +00:00
"--with-user-smtpd=smtpd"
"--with-user-queue=smtpq"
"--with-group-queue=smtpq"
"--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt"
"--with-libevent=${libevent.dev}"
"--with-table-db"
2015-02-13 00:24:05 +00:00
];
2015-04-22 22:37:51 +00:00
installFlags = [
"sysconfdir=\${out}/etc"
"localstatedir=\${TMPDIR}"
];
2016-05-22 20:22:39 +00:00
meta = with stdenv.lib; {
2014-12-18 19:04:22 +00:00
homepage = https://www.opensmtpd.org/;
description = ''
A free implementation of the server-side SMTP protocol as defined by
2014-11-11 13:20:43 +00:00
RFC 5321, with some additional standard extensions
'';
2016-05-22 20:22:39 +00:00
license = licenses.isc;
platforms = platforms.linux;
maintainers = with maintainers; [ rickynils obadz ];
};
}