2018-08-06 12:04:56 +02:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
extraConfigType = with types; attrsOf (either (either str int) bool);
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options.offlineimap = {
|
|
|
|
enable = mkEnableOption "OfflineIMAP";
|
|
|
|
|
2018-11-19 23:04:34 +01:00
|
|
|
extraConfig.account = mkOption {
|
|
|
|
type = extraConfigType;
|
|
|
|
default = {};
|
|
|
|
example = {
|
|
|
|
autorefresh = 20;
|
|
|
|
};
|
|
|
|
description = ''
|
|
|
|
Extra configuration options to add to the account section.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-08-06 12:04:56 +02:00
|
|
|
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.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|