about summary refs log tree commit diff
path: root/users/fcuny/desktop/trust/email.nix
blob: 641166eeb489ad45f7460b7b20bab173f8b1aaa8 (plain) (blame)
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
{ pkgs, config, lib, ... }:

{
  accounts.email = {
    maildirBasePath = "${config.home.homeDirectory}/.mail";
    accounts = {
      fastmail = rec {
        primary = true;
        address = "franck@fcuny.net";
        userName = address;
        passwordCommand = "pass email/imap.fastmail.com";
        imap.host = "imap.fastmail.com";
        mbsync = {
          enable = true;
          create = "maildir";
          expunge = "both";
        };
        notmuch.enable = true;
      };
    };
  };

  programs.mbsync.enable = true;

  programs.notmuch = {
    enable = true;
    maildir.synchronizeFlags = true;
    new.tags = [ "new" ];
    search.excludeTags = [ "spam" ];
  };

  xdg.configFile."mbsync/imap-sync.sh" = {
    executable = true;
    text = ''
      #!${pkgs.stdenv.shell}
      MAILDIR=$HOME/.mail/

      # Strip UIDs from filenames when moving mails so that mbsync doesn't get confused.
      mv_renamed() {
        while IFS= read -r name; do
        	flags=$(echo "$name" | cut -d':' -f2)
          new_name="$(basename $name | awk -F ',' '{print $1}')"
          [ -f "$name" ] && mv -nv "${name}" "${1}/${new_name}"
        done
      }

      ${pkgs.notmuch}/bin/notmuch search --output=files -- not tag:inbox and folder:Fastmail/Inbox | mv_renamed ${MAILDIR}/Fastmail/Archive/cur
  '';
  };

  systemd.user.services.mbsync = {
    Unit = {
      Description = "mbsync synchronization";
    };
    Service = {
      Type = "oneshot";
      ExecStartPre = "${config.xdg.configFile}/mbsync/imap-sync.sh";
      ExecStart = "${pkgs.isync}/bin/mbsync -a";
      ExecStartPost = "${pkgs.notmuch}/bin/notmuch new --quiet";
    };
  };

  systemd.user.timers.mbsync = {
    Unit = { Description = "mbsync synchronization"; };
    Timer = {
      OnBootSec = "30";
      OnUnitActiveSec = "5m";
    };
    Install = { WantedBy = [ "timers.target" ]; };
  };
}