deactivate msmtp atm, not building and not used
This commit is contained in:
parent
37ae9e4487
commit
1f2770bec2
36
common.nix
36
common.nix
|
@ -284,24 +284,24 @@ in
|
||||||
services.smartd.enable = true;
|
services.smartd.enable = true;
|
||||||
|
|
||||||
# ensure cron and Co. can send mails
|
# ensure cron and Co. can send mails
|
||||||
programs.msmtp = {
|
# programs.msmtp = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
setSendmail = true;
|
# setSendmail = true;
|
||||||
accounts = {
|
# accounts = {
|
||||||
default = {
|
# default = {
|
||||||
auth = true;
|
# auth = true;
|
||||||
tls = true;
|
# tls = true;
|
||||||
from = "noreply@home.local";
|
# from = "noreply@home.local";
|
||||||
host = "babylon2k.com";
|
# host = "babylon2k.com";
|
||||||
port = "587";
|
# port = "587";
|
||||||
user = builtins.readFile "/data/nixos/mailuser.secret";
|
# user = builtins.readFile "/data/nixos/mailuser.secret";
|
||||||
password = builtins.readFile "/data/nixos/mailpassword.secret";
|
# password = builtins.readFile "/data/nixos/mailpassword.secret";
|
||||||
};
|
# };
|
||||||
};
|
# };
|
||||||
defaults = {
|
# defaults = {
|
||||||
aliases = "/etc/aliases";
|
# aliases = "/etc/aliases";
|
||||||
};
|
# };
|
||||||
};
|
# };
|
||||||
|
|
||||||
environment.etc = {
|
environment.etc = {
|
||||||
"aliases" = {
|
"aliases" = {
|
||||||
|
|
Loading…
Reference in a new issue