Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asciimoth committed Aug 6, 2023
1 parent fffb12c commit 59a1c63
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions machines/pcLexell/email.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ in {
imap-port = 993;
imap-login = "${login}@${host}";
imap-auth = "passwd";
imap-passwd = {
cmd = passcmd;
};
imap-passwd = {cmd = passcmd;};
imap-ssl = true;
imap-starttls = false;
# Sender
Expand All @@ -62,9 +60,7 @@ in {
smtp-port = 465;
smtp-login = "${login}@${host}";
smtp-auth = "passwd";
smtp-passwd = {
cmd = ["pass show email/${host}/${login}" "head -1" "cut -d' ' -f2"];
};
smtp-passwd = {cmd = passcmd;};
smtp-ssl = true;
smtp-starttls = false;
};
Expand Down

0 comments on commit 59a1c63

Please sign in to comment.