2018-04-26 23:36:09 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.mbsync;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
mbsyncOptions = [ "--all" ] ++ optional (cfg.verbose) "--verbose"
|
|
|
|
++ optional (cfg.configFile != null) "--config ${cfg.configFile}";
|
2018-04-26 23:36:09 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2018-04-26 23:36:09 +02:00
|
|
|
meta.maintainers = [ maintainers.pjones ];
|
|
|
|
|
|
|
|
options.services.mbsync = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "mbsync";
|
2018-04-26 23:36:09 +02:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.isync;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.isync";
|
|
|
|
example = literalExpression "pkgs.isync";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "The package to use for the mbsync binary.";
|
2018-04-26 23:36:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
frequency = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "*:0/5";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2018-04-26 23:36:09 +02:00
|
|
|
How often to run mbsync. This value is passed to the systemd
|
|
|
|
timer configuration as the onCalendar option. See
|
2023-07-01 01:30:13 +02:00
|
|
|
{manpage}`systemd.time(7)`
|
2018-04-26 23:36:09 +02:00
|
|
|
for more information about the format.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
verbose = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2018-04-26 23:36:09 +02:00
|
|
|
Whether mbsync should produce verbose output.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
configFile = mkOption {
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
default = null;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2018-04-26 23:36:09 +02:00
|
|
|
Optional configuration file to link to use instead of
|
2023-07-01 01:30:13 +02:00
|
|
|
the default file ({file}`~/.mbsyncrc`).
|
2018-04-26 23:36:09 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
preExec = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
example = "mkdir -p %h/mail";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2018-04-26 23:36:09 +02:00
|
|
|
An optional command to run before mbsync executes. This is
|
|
|
|
useful for creating the directories mbsync is going to use.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
postExec = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
2019-07-17 10:02:35 +02:00
|
|
|
example = "\${pkgs.mu}/bin/mu index";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2018-04-26 23:36:09 +02:00
|
|
|
An optional command to run after mbsync executes successfully.
|
|
|
|
This is useful for running mailbox indexing tools.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.mbsync" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2018-04-26 23:36:09 +02:00
|
|
|
systemd.user.services.mbsync = {
|
2020-02-02 00:39:17 +01:00
|
|
|
Unit = { Description = "mbsync mailbox synchronization"; };
|
2018-04-26 23:36:09 +02:00
|
|
|
|
|
|
|
Service = {
|
2018-10-13 19:19:09 +02:00
|
|
|
Type = "oneshot";
|
2020-02-02 00:39:17 +01:00
|
|
|
ExecStart =
|
|
|
|
"${cfg.package}/bin/mbsync ${concatStringsSep " " mbsyncOptions}";
|
|
|
|
} // (optionalAttrs (cfg.postExec != null) {
|
|
|
|
ExecStartPost = cfg.postExec;
|
|
|
|
}) // (optionalAttrs (cfg.preExec != null) {
|
|
|
|
ExecStartPre = cfg.preExec;
|
|
|
|
});
|
2018-04-26 23:36:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
systemd.user.timers.mbsync = {
|
2020-02-02 00:39:17 +01:00
|
|
|
Unit = { Description = "mbsync mailbox synchronization"; };
|
2018-04-26 23:36:09 +02:00
|
|
|
|
|
|
|
Timer = {
|
|
|
|
OnCalendar = cfg.frequency;
|
|
|
|
Unit = "mbsync.service";
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Install = { WantedBy = [ "timers.target" ]; };
|
2018-04-26 23:36:09 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|