2019-05-01 13:32:37 +02:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
options.getmail = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "the getmail mail retriever for this account";
|
2019-05-01 13:32:37 +02:00
|
|
|
|
|
|
|
destinationCommand = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
example = "\${pkgs.maildrop}/bin/maildrop";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2019-05-01 13:32:37 +02:00
|
|
|
Specify a command delivering the incoming mail to your maildir.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
mailboxes = mkOption {
|
|
|
|
type = types.nonEmptyListOf types.str;
|
2020-02-02 00:39:17 +01:00
|
|
|
default = [ ];
|
|
|
|
example = [ "INBOX" "INBOX.spam" ];
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2019-05-01 13:32:37 +02:00
|
|
|
A non-empty list of mailboxes. To download all mail you can
|
2023-07-01 01:30:13 +02:00
|
|
|
use the `ALL` mailbox.
|
2019-05-01 13:32:37 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
delete = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2019-05-01 13:32:37 +02:00
|
|
|
Enable if you want to delete read messages from the server. Most
|
2023-07-01 01:30:13 +02:00
|
|
|
users should either enable `delete` or disable
|
|
|
|
`readAll`.
|
2019-05-01 13:32:37 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
readAll = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2019-05-01 13:32:37 +02:00
|
|
|
Enable if you want to fetch all, even the read messages from the
|
2023-07-01 01:30:13 +02:00
|
|
|
server. Most users should either enable `delete` or
|
|
|
|
disable `readAll`.
|
2019-05-01 13:32:37 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|