1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/modules/programs/mujmap.nix
Emily 36a53d9f26 treewide: convert all option docs to Markdown
This process was automated by [my fork of `nix-doc-munge`]. All
conversions were automatically checked to produce the same DocBook
result when converted back, modulo minor typographical/formatting
differences on the acceptable-to-desirable spectrum.

To reproduce this commit, run:

  $ NIX_PATH=nixpkgs=flake:nixpkgs/e7e69199f0372364a6106a1e735f68604f4c5a25 \
    nix shell nixpkgs#coreutils \
    -c find . -name '*.nix' \
    -exec nix run -- github:emilazy/nix-doc-munge/98dadf1f77351c2ba5dcb709a2a171d655f15099 \
    {} +
  $ ./format

[my fork of `nix-doc-munge`]: https://github.com/emilazy/nix-doc-munge/tree/home-manager
2023-07-17 18:40:56 +01:00

318 lines
8.8 KiB
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.mujmap;
mujmapAccounts =
filter (a: a.mujmap.enable) (attrValues config.accounts.email.accounts);
missingNotmuchAccounts = map (a: a.name)
(filter (a: !a.notmuch.enable && a.mujmap.notmuchSetupWarning)
mujmapAccounts);
notmuchConfigHelp =
map (name: "accounts.email.accounts.${name}.notmuch.enable = true;")
missingNotmuchAccounts;
settingsFormat = pkgs.formats.toml { };
filterNull = attrs: attrsets.filterAttrs (n: v: v != null) attrs;
configFile = account:
let
settings'' = if (account.jmap == null) then
{ }
else
filterNull {
fqdn = account.jmap.host;
session_url = account.jmap.sessionUrl;
};
settings' = settings'' // {
username = account.userName;
password_command = escapeShellArgs account.passwordCommand;
} // filterNull account.mujmap.settings;
settings = if (hasAttr "fqdn" settings') then
(removeAttrs settings' [ "session_url" ])
else
settings';
in {
name = "${account.maildir.absPath}/mujmap.toml";
value.source = settingsFormat.generate
"mujmap-${lib.replaceStrings [ "@" ] [ "_at_" ] account.address}.toml"
settings;
};
tagsOpts = {
lowercase = mkOption {
type = types.bool;
default = false;
description = lib.mdDoc ''
If true, translate all mailboxes to lowercase names when mapping to notmuch
tags.
'';
};
directory_separator = mkOption {
type = types.str;
default = "/";
example = ".";
description = lib.mdDoc ''
Directory separator for mapping notmuch tags to maildirs.
'';
};
inbox = mkOption {
type = types.str;
default = "inbox";
description = lib.mdDoc ''
Tag for notmuch to use for messages stored in the mailbox labeled with the
`Inbox` name attribute.
If set to an empty string, this mailbox *and its child
mailboxes* are not synchronized with a tag.
'';
};
deleted = mkOption {
type = types.str;
default = "deleted";
description = lib.mdDoc ''
Tag for notmuch to use for messages stored in the mailbox labeled with the
`Trash` name attribute.
If set to an empty string, this mailbox *and its child
mailboxes* are not synchronized with a tag.
'';
};
sent = mkOption {
type = types.str;
default = "sent";
description = lib.mdDoc ''
Tag for notmuch to use for messages stored in the mailbox labeled with the
`Sent` name attribute.
If set to an empty string, this mailbox *and its child
mailboxes* are not synchronized with a tag.
'';
};
spam = mkOption {
type = types.str;
default = "spam";
description = lib.mdDoc ''
Tag for notmuch to use for messages stored in the mailbox labeled with the
`Junk` name attribute and/or with the `$Junk` keyword,
*except* for messages with the `$NotJunk` keyword.
If set to an empty string, this mailbox, *its child
mailboxes*, and these keywords are not synchronized with a tag.
'';
};
important = mkOption {
type = types.str;
default = "important";
description = lib.mdDoc ''
Tag for notmuch to use for messages stored in the mailbox labeled with the
`Important` name attribute and/or with the `$Important`
keyword.
If set to an empty string, this mailbox, *its child
mailboxes*, and these keywords are not synchronized with a tag.
'';
};
phishing = mkOption {
type = types.str;
default = "phishing";
description = lib.mdDoc ''
Tag for notmuch to use for the IANA `$Phishing` keyword.
If set to an empty string, this keyword is not synchronized with a tag.
'';
};
};
rootOpts = {
username = mkOption {
type = types.nullOr types.str;
default = null;
example = "alice@example.com";
description = lib.mdDoc ''
Username for basic HTTP authentication.
If `null`, defaults to
[](#opt-accounts.email.accounts._name_.userName).
'';
};
password_command = mkOption {
type = types.nullOr (types.either types.str (types.listOf types.str));
default = null;
apply = p: if isList p then escapeShellArgs p else p;
example = "pass alice@example.com";
description = lib.mdDoc ''
Shell command which will print a password to stdout for basic HTTP
authentication.
If `null`, defaults to
[](#opt-accounts.email.accounts._name_.passwordCommand).
'';
};
fqdn = mkOption {
type = types.nullOr types.str;
default = null;
example = "example.com";
description = lib.mdDoc ''
Fully qualified domain name of the JMAP service.
mujmap looks up the JMAP SRV record for this host to determine the JMAP session
URL. Mutually exclusive with
[](#opt-accounts.email.accounts._name_.mujmap.settings.session_url).
If `null`, defaults to
[](#opt-accounts.email.accounts._name_.jmap.host).
'';
};
session_url = mkOption {
type = types.nullOr types.str;
default = null;
example = "https://jmap.example.com/.well-known/jmap";
description = lib.mdDoc ''
Session URL to connect to.
Mutually exclusive with
[](#opt-accounts.email.accounts._name_.mujmap.settings.fqdn).
If `null`, defaults to
[](#opt-accounts.email.accounts._name_.jmap.sessionUrl).
'';
};
auto_create_new_mailboxes = mkOption {
type = types.bool;
default = true;
description = lib.mdDoc ''
Whether to create new mailboxes automatically on the server from notmuch
tags.
'';
};
cache_dir = mkOption {
type = types.nullOr types.str;
default = null;
description = lib.mdDoc ''
The cache directory in which to store mail files while they are being
downloaded. The default is operating-system specific.
'';
};
tags = mkOption {
type = types.submodule {
freeformType = settingsFormat.type;
options = tagsOpts;
};
default = { };
description = lib.mdDoc ''
Tag configuration.
Beware that there are quirks that require manual consideration if changing the
values of these files; please see
<https://github.com/elizagamedev/mujmap/blob/main/mujmap.toml.example>
for more details.
'';
};
};
mujmapOpts = {
enable =
mkEnableOption (lib.mdDoc "mujmap JMAP synchronization for notmuch");
notmuchSetupWarning = mkOption {
type = types.bool;
default = true;
description = lib.mdDoc ''
Warn if Notmuch is not also enabled for this account.
This can safely be disabled if {file}`mujmap.toml` is managed
outside of Home Manager.
'';
};
settings = mkOption {
type = types.submodule {
freeformType = settingsFormat.type;
options = rootOpts;
};
default = { };
description = lib.mdDoc ''
Settings which are applied to {file}`mujmap.toml`
for the account.
See the [mujmap project](https://github.com/elizagamedev/mujmap)
for documentation of settings not explicitly covered by this module.
'';
};
};
mujmapModule = types.submodule { options = { mujmap = mujmapOpts; }; };
in {
meta.maintainers = with maintainers; [ elizagamedev ];
options = {
programs.mujmap = {
enable =
mkEnableOption (lib.mdDoc "mujmap Gmail synchronization for notmuch");
package = mkOption {
type = types.package;
default = pkgs.mujmap;
defaultText = "pkgs.mujmap";
description = lib.mdDoc ''
mujmap package to use.
'';
};
};
accounts.email.accounts =
mkOption { type = with types; attrsOf mujmapModule; };
};
config = mkIf cfg.enable (mkMerge [
(mkIf (missingNotmuchAccounts != [ ]) {
warnings = [''
mujmap is enabled for the following email accounts, but notmuch is not:
${concatStringsSep "\n " missingNotmuchAccounts}
Notmuch can be enabled with:
${concatStringsSep "\n " notmuchConfigHelp}
If you have configured notmuch outside of Home Manager, you can suppress this
warning with:
programs.mujmap.notmuchSetupWarning = false;
''];
})
{
warnings = flatten (map (account: account.warnings) mujmapAccounts);
home.packages = [ cfg.package ];
# Notmuch should ignore non-mail files created by mujmap.
programs.notmuch.new.ignore = [ "/.*[.](toml|json|lock)$/" ];
home.file = listToAttrs (map configFile mujmapAccounts);
}
]);
}