mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
Some security options added to mail-related servers..
svn path=/nixpkgs/trunk/; revision=12222
This commit is contained in:
parent
5df5717181
commit
cd9f816c08
@ -1,7 +1,13 @@
|
|||||||
{stdenv, fetchurl}:
|
{stdenv, fetchurl
|
||||||
|
, openssl
|
||||||
|
, pam
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "dovecot-1.0.3";
|
name = "dovecot-1.0.3";
|
||||||
|
|
||||||
|
buildInputs = [openssl pam];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://dovecot.org/releases/1.0/dovecot-1.0.3.tar.gz;
|
url = http://dovecot.org/releases/1.0/dovecot-1.0.3.tar.gz;
|
||||||
sha256 = "14b3sbvj9xpm5mjwfavwrcwmzfdgian51ncspl8j83cd8j01jdjz";
|
sha256 = "14b3sbvj9xpm5mjwfavwrcwmzfdgian51ncspl8j83cd8j01jdjz";
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
{stdenv, fetchurl, db4, glibc}:
|
{stdenv, fetchurl, db4, glibc
|
||||||
|
, openssl
|
||||||
|
, cyrus_sasl
|
||||||
|
}:
|
||||||
|
|
||||||
assert stdenv.isLinux;
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
@ -11,10 +14,18 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
installTargets = ["non-interactive-package"];
|
installTargets = ["non-interactive-package"];
|
||||||
installFlags = [" install_root=$out "];
|
installFlags = [" install_root=$out "];
|
||||||
preInstall = "sed -e '/^PATH=/d' -i postfix-install";
|
preInstall = "
|
||||||
|
sed -e '/^PATH=/d' -i postfix-install
|
||||||
|
";
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
ensureDir $out
|
ensureDir $out
|
||||||
mv ut/$out/* $out/
|
mv ut/$out/* $out/
|
||||||
|
|
||||||
|
mkdir $out/share/postfix/conf
|
||||||
|
cp conf/* $out/share/postfix/conf
|
||||||
|
sed -e 's@PATH=.*@PATH=${stdenv.coreutils}/bin:${stdenv.findutils}/bin:${stdenv.gnused}/bin:${stdenv.gnugrep}/bin:$out/sbin@' -i $out/share/postfix/conf/post-install
|
||||||
|
sed -e '2aPATH=${stdenv.coreutils}/bin:${stdenv.findutils}/bin:${stdenv.gnused}/bin:${stdenv.gnugrep}/bin:$out/sbin' -i $out/share/postfix/conf/postfix-script
|
||||||
|
chmod a+x $out/share/postfix/conf/{postfix-script,post-install}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
@ -28,9 +39,11 @@ stdenv.mkDerivation {
|
|||||||
export manpage_directory=$out/share/man
|
export manpage_directory=$out/share/man
|
||||||
export sample_directory=$out/share/postfix/doc/samples
|
export sample_directory=$out/share/postfix/doc/samples
|
||||||
export readme_directory=$out/share/postfix/doc
|
export readme_directory=$out/share/postfix/doc
|
||||||
|
|
||||||
|
make makefiles CCARGS='-DUSE_TLS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -DHAS_DB -I${cyrus_sasl}/include/sasl' AUXLIBS='-lssl -lcrypto -lsasl2 -ldb'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildinputs = [db4];
|
buildinputs = [db4 openssl cyrus_sasl];
|
||||||
patches = [./postfix-2.2.9-db.patch ./postfix-2.2.9-lib.patch];
|
patches = [./postfix-2.2.9-db.patch ./postfix-2.2.9-lib.patch];
|
||||||
inherit glibc;
|
inherit glibc;
|
||||||
}
|
}
|
||||||
|
@ -4375,7 +4375,7 @@ let pkgs = rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
dovecot = import ../servers/mail/dovecot {
|
dovecot = import ../servers/mail/dovecot {
|
||||||
inherit fetchurl stdenv ;
|
inherit fetchurl stdenv openssl pam;
|
||||||
};
|
};
|
||||||
|
|
||||||
ejabberd = import ../servers/xmpp/ejabberd {
|
ejabberd = import ../servers/xmpp/ejabberd {
|
||||||
@ -4411,7 +4411,7 @@ let pkgs = rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
postfix = import ../servers/mail/postfix {
|
postfix = import ../servers/mail/postfix {
|
||||||
inherit fetchurl stdenv db4;
|
inherit fetchurl stdenv db4 openssl cyrus_sasl;
|
||||||
glibc = stdenv.glibc;
|
glibc = stdenv.glibc;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user