2016-05-23 21:07:05 +00:00
|
|
|
{ stdenv, lib, fetchurl, autoconf, automake, libtool, bison
|
2016-05-22 20:22:39 +00:00
|
|
|
, libasr, libevent, zlib, openssl, db, pam
|
2016-05-23 21:07:05 +00: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
|
|
|
|
|
|
|
|
# This enables you to override the '+' character which typically separates the user from the tag in user+tag@domain.tld
|
|
|
|
, tag_char ? null
|
2015-04-22 22:37:51 +00:00
|
|
|
}:
|
2013-07-15 13:05:03 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "opensmtpd-${version}";
|
2016-09-15 15:19:51 +00:00
|
|
|
version = "6.0.0p1";
|
2013-07-15 13:05:03 +00:00
|
|
|
|
2015-04-22 22:37:51 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool bison ];
|
|
|
|
buildInputs = [ libasr libevent zlib openssl db pam ];
|
2013-07-15 13:05:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-15 15:19:51 +00:00
|
|
|
url = "https://www.opensmtpd.org/archives/${name}.tar.gz";
|
|
|
|
sha256 = "07gq21bx62w367512d0bbp9hm3pfgqh3kksg2by7n574kxc7jzm9";
|
2015-02-13 00:24:05 +00:00
|
|
|
};
|
2013-07-15 13:05:03 +00:00
|
|
|
|
2015-09-26 07:40:44 +00:00
|
|
|
patches = [ ./proc_path.diff ];
|
|
|
|
|
2016-05-23 21:07:05 +00:00
|
|
|
postPatch = with builtins; with lib;
|
|
|
|
optionalString (isString tag_char) ''
|
|
|
|
sed -i -e "s,TAG_CHAR.*'+',TAG_CHAR '${tag_char}'," smtpd/smtpd-defines.h
|
|
|
|
'' +
|
|
|
|
optionalString unpriviledged_smtpctl_encrypt ''
|
|
|
|
substituteInPlace smtpd/smtpctl.c --replace \
|
|
|
|
'if (geteuid())' \
|
|
|
|
'if (geteuid() != 0 && !(argc > 1 && !strcmp(argv[1], "encrypt")))'
|
|
|
|
'';
|
|
|
|
|
2015-02-13 00:24:05 +00:00
|
|
|
configureFlags = [
|
2015-04-22 22:37:51 +00:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2013-07-15 13:05:03 +00:00
|
|
|
"--with-mantype=doc"
|
2016-05-27 12:36:42 +00:00
|
|
|
"--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"
|
2016-05-27 12:36:42 +00:00
|
|
|
"--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt"
|
|
|
|
"--with-libevent=${libevent.dev}"
|
|
|
|
"--with-table-db"
|
2015-02-13 00:24:05 +00:00
|
|
|
];
|
2013-07-15 13:05:03 +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/;
|
2013-07-15 13:05:03 +00:00
|
|
|
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
|
2013-07-15 13:05:03 +00:00
|
|
|
'';
|
2016-05-22 20:22:39 +00:00
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ rickynils obadz ];
|
2013-07-15 13:05:03 +00:00
|
|
|
};
|
|
|
|
}
|