mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
68fe8623ad
This patch started by addresssing the code review comments to close https://github.com/rycee/home-manager/pull/290. However initiating a new pull request it became clear, that home-manager changed significantly since then. This changes the initial pull request to be consistent with the email account management in home-manager now. It also adds a simple test and support for multiple accounts.
59 lines
1.7 KiB
Nix
59 lines
1.7 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
accounts = filter (a: a.getmail.enable)
|
|
(attrValues config.accounts.email.accounts);
|
|
|
|
renderAccountConfig = account: with account;
|
|
let
|
|
passCmd = concatMapStringsSep ", " (x: "'${x}'") passwordCommand;
|
|
renderedMailboxes = concatMapStringsSep ", " (x: "'${x}'") getmail.mailboxes;
|
|
retrieverType = if imap.tls.enable
|
|
then "SimpleIMAPSSLRetriever"
|
|
else "SimpleIMAPRetriever";
|
|
destination = if getmail.destinationCommand != null
|
|
then
|
|
{
|
|
destinationType = "MDA_external";
|
|
destinationPath = getmail.destinationCommand;
|
|
}
|
|
else
|
|
{
|
|
destinationType = "Maildir";
|
|
destinationPath = "${maildir.absPath}/";
|
|
};
|
|
renderGetmailBoolean = v: if v then "true" else "false";
|
|
in ''
|
|
# Generated by Home-Manager.
|
|
[retriever]
|
|
type = ${retrieverType}
|
|
server = ${imap.host}
|
|
username = ${userName}
|
|
password_command = (${passCmd})
|
|
mailboxes = ( ${renderedMailboxes} )
|
|
|
|
[destination]
|
|
type = ${destination.destinationType}
|
|
path = ${destination.destinationPath}
|
|
|
|
[options]
|
|
delete = ${renderGetmailBoolean getmail.delete}
|
|
read_all = ${renderGetmailBoolean getmail.readAll}
|
|
'';
|
|
getmailEnabled = length (filter (a: a.getmail.enable) accounts) > 0;
|
|
# Watch out! This is used by the getmail.service too!
|
|
renderConfigFilepath = a: ".getmail/getmail${if a.primary then "rc" else a.name}";
|
|
in
|
|
|
|
{
|
|
config = mkIf getmailEnabled {
|
|
home.file = map (a:
|
|
{ target = renderConfigFilepath a;
|
|
text = renderAccountConfig a;
|
|
}) accounts;
|
|
|
|
};
|
|
}
|