2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-10-12 17:36:19 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2009-03-06 12:26:29 +00:00
|
|
|
|
|
|
|
let
|
2009-10-12 17:36:19 +01:00
|
|
|
|
|
|
|
cfg = config.services.ejabberd;
|
|
|
|
|
2016-01-03 02:36:19 +00:00
|
|
|
ctlcfg = pkgs.writeText "ejabberdctl.cfg" ''
|
|
|
|
ERL_EPMD_ADDRESS=127.0.0.1
|
|
|
|
${cfg.ctlConfig}
|
|
|
|
'';
|
2009-10-12 17:36:19 +01:00
|
|
|
|
2019-04-17 22:50:29 +01:00
|
|
|
ectl = ''${cfg.package}/bin/ejabberdctl ${optionalString (cfg.configFile != null) "--config ${cfg.configFile}"} --ctl-config "${ctlcfg}" --spool "${cfg.spoolDir}" --logs "${cfg.logsDir}"'';
|
2016-01-03 02:36:19 +00:00
|
|
|
|
2016-06-12 18:11:37 +01:00
|
|
|
dumps = lib.escapeShellArgs cfg.loadDumps;
|
2016-01-03 02:36:19 +00:00
|
|
|
|
|
|
|
in {
|
2009-10-12 17:36:19 +01:00
|
|
|
|
|
|
|
###### interface
|
2009-03-06 12:26:29 +00:00
|
|
|
|
|
|
|
options = {
|
2011-02-16 21:03:14 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
services.ejabberd = {
|
2011-02-16 21:03:14 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
enable = mkOption {
|
2016-01-03 02:36:19 +00:00
|
|
|
type = types.bool;
|
2009-10-12 17:36:19 +01:00
|
|
|
default = false;
|
|
|
|
description = "Whether to enable ejabberd server";
|
|
|
|
};
|
|
|
|
|
2016-01-03 02:36:19 +00:00
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.ejabberd;
|
2016-02-17 19:22:56 +00:00
|
|
|
defaultText = "pkgs.ejabberd";
|
2016-01-03 02:36:19 +00:00
|
|
|
description = "ejabberd server package to use";
|
|
|
|
};
|
|
|
|
|
|
|
|
user = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "ejabberd";
|
|
|
|
description = "User under which ejabberd is ran";
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "ejabberd";
|
|
|
|
description = "Group under which ejabberd is ran";
|
|
|
|
};
|
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
spoolDir = mkOption {
|
2016-01-03 02:36:19 +00:00
|
|
|
type = types.path;
|
2009-10-12 17:36:19 +01:00
|
|
|
default = "/var/lib/ejabberd";
|
|
|
|
description = "Location of the spooldir of ejabberd";
|
|
|
|
};
|
|
|
|
|
|
|
|
logsDir = mkOption {
|
2016-01-03 02:36:19 +00:00
|
|
|
type = types.path;
|
2009-10-12 17:36:19 +01:00
|
|
|
default = "/var/log/ejabberd";
|
|
|
|
description = "Location of the logfile directory of ejabberd";
|
|
|
|
};
|
|
|
|
|
2016-01-03 02:36:19 +00:00
|
|
|
configFile = mkOption {
|
2016-01-12 17:12:47 +00:00
|
|
|
type = types.nullOr types.path;
|
2016-01-03 02:36:19 +00:00
|
|
|
description = "Configuration file for ejabberd in YAML format";
|
2016-01-12 17:12:47 +00:00
|
|
|
default = null;
|
2009-03-06 12:26:29 +00:00
|
|
|
};
|
2009-10-12 17:36:19 +01:00
|
|
|
|
2016-01-03 02:36:19 +00:00
|
|
|
ctlConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = "Configuration of ejabberdctl";
|
2009-10-12 17:36:19 +01:00
|
|
|
};
|
|
|
|
|
2009-11-19 15:12:05 +00:00
|
|
|
loadDumps = mkOption {
|
2016-01-03 02:36:19 +00:00
|
|
|
type = types.listOf types.path;
|
2009-11-19 15:12:05 +00:00
|
|
|
default = [];
|
2016-01-03 02:36:19 +00:00
|
|
|
description = "Configuration dumps that should be loaded on the first startup";
|
2013-10-23 19:06:39 +01:00
|
|
|
example = literalExample "[ ./myejabberd.dump ]";
|
2009-11-19 15:12:05 +00:00
|
|
|
};
|
2016-05-07 12:31:16 +01:00
|
|
|
|
|
|
|
imagemagick = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Add ImageMagick to server's path; allows for image thumbnailing";
|
|
|
|
};
|
2009-03-06 12:26:29 +00:00
|
|
|
};
|
2011-02-16 21:03:14 +00:00
|
|
|
|
2009-03-06 12:26:29 +00:00
|
|
|
};
|
2011-02-16 21:03:14 +00:00
|
|
|
|
2009-03-06 12:26:29 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
###### implementation
|
2008-02-04 13:40:01 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
config = mkIf cfg.enable {
|
2016-01-03 02:36:19 +00:00
|
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
|
2019-09-14 18:51:29 +01:00
|
|
|
users.users = optionalAttrs (cfg.user == "ejabberd") {
|
|
|
|
ejabberd = {
|
2016-01-03 02:36:19 +00:00
|
|
|
group = cfg.group;
|
|
|
|
home = cfg.spoolDir;
|
|
|
|
createHome = true;
|
|
|
|
uid = config.ids.uids.ejabberd;
|
2019-09-14 18:51:29 +01:00
|
|
|
};
|
|
|
|
};
|
2016-01-03 02:36:19 +00:00
|
|
|
|
2019-09-14 18:51:29 +01:00
|
|
|
users.groups = optionalAttrs (cfg.group == "ejabberd") {
|
|
|
|
ejabberd.gid = config.ids.gids.ejabberd;
|
|
|
|
};
|
2008-02-04 13:40:01 +00:00
|
|
|
|
2016-01-06 06:50:18 +00:00
|
|
|
systemd.services.ejabberd = {
|
2016-01-03 02:36:19 +00:00
|
|
|
description = "ejabberd server";
|
2016-01-06 06:50:18 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2016-01-03 02:36:19 +00:00
|
|
|
after = [ "network.target" ];
|
2019-04-17 22:50:29 +01:00
|
|
|
path = [ pkgs.findutils pkgs.coreutils ] ++ lib.optional cfg.imagemagick pkgs.imagemagick;
|
2016-01-03 02:36:19 +00:00
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
User = cfg.user;
|
|
|
|
Group = cfg.group;
|
2019-04-17 22:50:29 +01:00
|
|
|
ExecStart = "${ectl} foreground";
|
|
|
|
ExecStop = "${ectl} stop";
|
|
|
|
ExecReload = "${ectl} reload_config";
|
2016-01-03 02:36:19 +00:00
|
|
|
};
|
2016-01-06 06:50:18 +00:00
|
|
|
|
|
|
|
preStart = ''
|
2016-08-12 02:31:02 +01:00
|
|
|
if [ -z "$(ls -A '${cfg.spoolDir}')" ]; then
|
|
|
|
touch "${cfg.spoolDir}/.firstRun"
|
|
|
|
fi
|
|
|
|
'';
|
2016-01-03 02:36:19 +00:00
|
|
|
|
2016-08-12 02:31:02 +01:00
|
|
|
postStart = ''
|
2016-01-03 02:36:19 +00:00
|
|
|
while ! ${ectl} status >/dev/null 2>&1; do
|
2016-08-12 02:31:02 +01:00
|
|
|
if ! kill -0 "$MAINPID"; then exit 1; fi
|
|
|
|
sleep 0.1
|
2016-01-03 02:36:19 +00:00
|
|
|
done
|
|
|
|
|
2016-08-12 02:31:02 +01:00
|
|
|
if [ -e "${cfg.spoolDir}/.firstRun" ]; then
|
|
|
|
rm "${cfg.spoolDir}/.firstRun"
|
2016-01-03 02:36:19 +00:00
|
|
|
for src in ${dumps}; do
|
|
|
|
find "$src" -type f | while read dump; do
|
|
|
|
echo "Loading configuration dump at $dump"
|
2019-04-17 22:50:29 +01:00
|
|
|
${ectl} load "$dump"
|
2016-01-03 02:36:19 +00:00
|
|
|
done
|
|
|
|
done
|
|
|
|
fi
|
2016-01-06 06:50:18 +00:00
|
|
|
'';
|
|
|
|
};
|
2009-10-12 17:36:19 +01:00
|
|
|
|
2019-04-17 22:50:29 +01:00
|
|
|
systemd.tmpfiles.rules = [
|
|
|
|
"d '${cfg.logsDir}' 0750 ${cfg.user} ${cfg.group} -"
|
|
|
|
"d '${cfg.spoolDir}' 0700 ${cfg.user} ${cfg.group} -"
|
|
|
|
];
|
|
|
|
|
2013-10-15 13:47:51 +01:00
|
|
|
security.pam.services.ejabberd = {};
|
|
|
|
|
2009-03-06 12:26:29 +00:00
|
|
|
};
|
2011-02-16 21:03:14 +00:00
|
|
|
|
2008-02-04 13:40:01 +00:00
|
|
|
}
|