mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-10 08:58:39 +00:00
Qualify path to cat (#55)
This commit is contained in:
@@ -100,7 +100,7 @@ in {
|
|||||||
create = "maildir";
|
create = "maildir";
|
||||||
};
|
};
|
||||||
realName = "Patrick Stevens";
|
realName = "Patrick Stevens";
|
||||||
passwordCommand = "cat ${secretsPath}/btinternet.txt";
|
passwordCommand = "${pkgs.coreutils}/bin/cat ${secretsPath}/btinternet.txt";
|
||||||
smtp = {
|
smtp = {
|
||||||
host = "mail.btinternet.com";
|
host = "mail.btinternet.com";
|
||||||
port = 465;
|
port = 465;
|
||||||
@@ -143,7 +143,7 @@ in {
|
|||||||
passwordCommand =
|
passwordCommand =
|
||||||
# I store the ProtonMail Bridge password here.
|
# I store the ProtonMail Bridge password here.
|
||||||
# Extracting it from a keychain would be better.
|
# Extracting it from a keychain would be better.
|
||||||
"cat ${secretsPath}/proton.txt";
|
"${pkgs.coreutils}/bin/cat ${secretsPath}/proton.txt";
|
||||||
smtp = {
|
smtp = {
|
||||||
host = "127.0.0.1";
|
host = "127.0.0.1";
|
||||||
port = 1025; # 8126; if using hydroxide
|
port = 1025; # 8126; if using hydroxide
|
||||||
|
Reference in New Issue
Block a user