aboutsummaryrefslogtreecommitdiff
path: root/home-manager/modules/programs/offlineimap-accounts.nix
blob: 015a5974ab3d9bd0d05f8dd527cf832be9885d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{ config, lib, ... }:

with lib;

let

  extraConfigType = with types; attrsOf (either (either str int) bool);

in

{
  options.offlineimap = {
    enable = mkEnableOption "OfflineIMAP";

    extraConfig.account = mkOption {
      type = extraConfigType;
      default = {};
      example = {
        autorefresh = 20;
      };
      description = ''
        Extra configuration options to add to the account section.
      '';
    };

    extraConfig.local = mkOption {
      type = extraConfigType;
      default = {};
      example = {
        sync_deletes = true;
      };
      description = ''
        Extra configuration options to add to the local account
        section.
      '';
    };

    extraConfig.remote = mkOption {
      type = extraConfigType;
      default = {};
      example = {
        maxconnections = 2;
        expunge = false;
      };
      description = ''
        Extra configuration options to add to the remote account
        section.
      '';
    };

    postSyncHookCommand = mkOption {
      type = types.lines;
      default = "";
      description = "Command to run after fetching new mails.";
    };
  };
}