aboutsummaryrefslogtreecommitdiff
path: root/gui/email.nix
blob: 46d1731bb5bc0730a5af7c5b400e08b9053b159f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{ pkgs, ... }:

{
  programs = {
    mbsync.enable = true;
    msmtp.enable = true;
  };

  accounts.email = {
    maildirBasePath = "mail";

    accounts.automatix = {
      primary = true;

      realName = "Adrian Kummerländer";
      address  = "adrian@kummerlaender.eu";

      userName = "adrian@kummerlaender.eu";
      passwordCommand = "${pkgs.pass}/bin/pass it/automatix_mail";

      gpg = {
        key = "61F4C67D12636E70AFB10C3D83E758150AB49859";
      };

      imap = {
        host = "mx.kummerlaender.eu";
        tls.enable = true;
      };

      mbsync = {
        enable = true;
        expunge = "both";
        create = "maildir";
      };

      smtp = {
        host = "mx.kummerlaender.eu";
        port = 587;
        tls.useStartTls = true;
      };

      msmtp.enable = true;
    };

    accounts.KIT = {
      realName = "Adrian Kummerländer";
      address = "adrian.kummerlaender@kit.edu";

      userName = "sb2380@kit.edu";
      passwordCommand = "${pkgs.pass}/bin/pass kit/sb2380";

      imap = {
        host = "imap.kit.edu";
        tls.enable = true;
      };

      mbsync = {
        enable = true;
        create = "both";
        expunge = "both";
        extraConfig.account = {
          AuthMechs = "PLAIN";
        };
      };

      smtp = {
        host = "smtp.kit.edu";
        port = 587;
        tls.useStartTls = true;
      };

      msmtp.enable = true;
    };
  };

  services.mbsync = {
    enable = true;
  };

  home.file.".emacs.d/email.el".source = ./conf/email.el;
}