about summary refs log tree commit diff
path: root/home/profiles/messaging/default.nix
blob: 60a219bdb4d172c74535549dbe959a7db2274de1 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
{ config, lib, pkgs, ... }:
let
  cfg = config.profiles.messaging;

  poorObfuscation = y: x: "${x}@${y}";
  mapKeys = map (x:
    let
      x' = lib.splitString " " x;
    in
    {
      map = lib.splitString "," (lib.head x');
      key = lib.elemAt x' 1;
      action = lib.last x';
    });
  mailPass = x: "${pkgs.pass}/bin/pass show emails/${x}";
  mbsyncCmd = "${config.programs.mbsync.package}/bin/mbsync";
in
{
  imports = [ ../../modules/programs/nixpkgs ];

  options.profiles.messaging = {
    enable = lib.mkEnableOption
      "A profile that enables the system to communicate via internet.";
  };

  config = lib.mkIf cfg.enable {
    accounts.email = {
      maildirBasePath = "${config.home.homeDirectory}/mail";

      accounts.zach = {
        address = poorObfuscation "zachel.io" "zach";
        gpg = {
          key = "346833414516C852FFB238E19F734565641C2F14";
          signByDefault = true;
        };

        imap.host = "imap.migadu.com";
        smtp.host = "smtp.migadu.com";

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

        msmtp.enable = true;
        notmuch.enable = true;
        neomutt.enable = true;
        neomutt.mailboxName = "zach";

        imapnotify = {
          enable = true;
          boxes = [ "Inbox" ];
          onNotify = pkgs.writeShellScript "imap-on-notify" ''
            ${mbsyncCmd} zach
            ${pkgs.notmuch}/bin/notmuch new
          '';
        };

        primary = true;
        realName = "zachel";
        userName = poorObfuscation "zachel.io" "zach";
        passwordCommand = mailPass "zach";
      };
    };

    programs.abook.enable = true;
    programs.mbsync.enable = true;
    programs.msmtp.enable = true;
    programs.notmuch = {
      enable = true;
      hooks.preNew = "${mbsyncCmd} --all";
    };

    programs.neomutt = {
      enable = true;
      sidebar.enable = true;
      sidebar.format = "%D%?F? [%F]?%* %?N?*N/?%S";

      sort = "reverse-threads";

      settings = {
        date_format = ''"%y/%m/%d %I:%M%p"'';
        index_format = ''"%2C %Z %?X?A& ? %D %-15.15F %s (%-4.4c)"'';
        query_command = ''"abook --mutt-query '%s'"'';
        rfc2047_parameters = "yes";
        # Pause 0 seconds for informational messages
        sleep_time = "0";
        # Disables the `+` displayed at line wraps
        markers = "no";
        # Unread mail stay unread until read;
        mark_old = "no";
        # attachments are forwarded with mail;
        mime_forward = "yes";
        # mutt won't ask "press key to continue";
        wait_key = "no";
        # skip to compose when replying
        fast_reply = "yes";
        # save attachments with the body
        fcc_attach = "yes";
        # format of subject when forwarding;
        forward_format = ''"Fwd: %s"'';
        # include message in forwards
        forward_quote = "yes";
        # reply as whomever it was to
        reverse_name = "yes";
        # include message in replies
        include = "yes";

        # edit headers in editor
        autoedit = "yes";
        edit_headers = "yes";
      };

      binds = mapKeys [
        "index,pager i noop"
        "index,pager g noop"
        "index \\Cf noop"
        "index j next-entry"
        "index k previous-entry"
        "attach <return> view-mailcap"
        "attach l view-mailcap"
        "editor <space> noop"
        "index G last-entry"
        "index gg first-entry"
        "pager,attach h exit"
        "pager j next-line"
        "pager k previous-line"
        "pager l view-attachments"
        "index D delete-message"
        "index U undelete-message"
        "index L limit"
        "index h noop"
        "index l display-message"
        "index,query <space> tag-entry"
        "browser h goto-parent"
        "index,pager H view-raw-message"
        "browser l select-entry"
        "pager,browser gg top-page"
        "pager,browser G bottom-page"
        "index,pager,browser d half-down"
        "index,pager,browser u half-up"
        "index,pager S sync-mailbox"
        "index,pager R group-reply"
        "index \\031 previous-undeleted" # Mouse wheel
        "index \\005 next-undeleted" # Mouse wheel
        "pager \\031 previous-line" # Mouse wheel
        "pager \\005 next-line" # Mouse wheel
        "editor <Tab> complete-query"

        # Pager stuff
        "index,pager B sidebar-toggle-visible"
      ];
      macros = mapKeys [
        "index,pager \\Ck <sidebar-prev><sidebar-open>"
        "index,pager \\Cj <sidebar-next><sidebar-open>"
        "index,pager \\Cp <sidebar-prev-new><sidebar-open>"
        "index,pager \\Cn <sidebar-next-new><sidebar-open>"
      ];

      extraConfig = ''
        # Default index colors:
        color index yellow default '.*'
        color index_author red default '.*'
        color index_number blue default
        color index_subject cyan default '.*'

        # New mail is boldened:
        color index brightyellow black "~N"
        color index_author brightred black "~N"
        color index_subject brightcyan black "~N"


        # Tagged mail is highlighted:
        color index brightyellow blue "~T"
        color index_author brightred blue "~T"
        color index_subject brightcyan blue "~T"


        # Other colors and aesthetic settings:
        mono bold bold
        mono underline underline
        mono indicator reverse
        mono error bold
        color normal default default
        color indicator brightblack white
        color sidebar_highlight red default
        color sidebar_divider brightblack black
        color sidebar_flagged red black
        color sidebar_new green black
        color normal brightyellow default
        color error red default
        color tilde black default
        color message cyan default
        color markers red white
        color attachment white default
        color search brightmagenta default
        color status brightyellow black
        color hdrdefault brightgreen default
        color quoted green default
        color quoted1 blue default
        color quoted2 cyan default
        color quoted3 yellow default
        color quoted4 red default
        color quoted5 brightred default
        color signature brightgreen default
        color bold black default
        color underline black default
        color normal default default


        # Regex highlighting:
        color header blue default ".*"
        color header brightmagenta default "^(From)"
        color header brightcyan default "^(Subject)"
        color header brightwhite default "^(CC|BCC)"
        color body brightred default "[\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+" # Email addresses
        color body brightblue default "(https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+" # URL
        color body green default "\`[^\`]*\`" # Green text between ` and `
        color body brightblue default "^# \.*" # Headings as bold blue
        color body brightcyan default "^## \.*" # Subheadings as bold cyan
        color body brightgreen default "^### \.*" # Subsubheadings as bold green
        color body yellow default "^(\t| )*(-|\\*) \.*" # List items as yellow
        color body brightcyan default "[;:][-o][)/(|]" # emoticons
        color body brightcyan default "[;:][)(|]" # emoticons
        color body brightcyan default "[ ][*][^*]*[*][ ]?" # more emoticon?
        color body brightcyan default "[ ]?[*][^*]*[*][ ]" # more emoticon?
        color body red default "(BAD signature)"
        color body cyan default "(Good signature)"
        color body brightblack default "^gpg: Good signature .*"
        color body brightyellow default "^gpg: "
        color body brightyellow red "^gpg: BAD signature from.*"
        mono body bold "^gpg: Good signature"
        mono body bold "^gpg: BAD signature from.*"
        color body red default "([a-z][a-z0-9+-]*://(((([a-z0-9_.!~*'();:&=+$,-]|%[0-9a-f][0-9a-f])*@)?((([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?|[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+)(:[0-9]+)?)|([a-z0-9_.!~*'()$,;:@&=+-]|%[0-9a-f][0-9a-f])+)(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?(#([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?|(www|ftp)\\.(([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?(:[0-9]+)?(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?(#([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?)[^].,:;!)? \t\r\n<>\"]"
      '';
    };

    programs.notmuch.hooks.postNew = ''
      ${pkgs.libnotify}/bin/notify-send --icon=mail-unread --app-name=notmuch \
        "Email" "Sync completed"
    '';

    services.imapnotify.enable = true;

    # Sync emails on initial login
    systemd.user.services.mbsync-oneshot = {
      Unit = {
        Description = "mbsync oneshot synchronisation";
      };
      Service = {
        Type = "oneshot";
        ExecStart = "${mbsyncCmd} --all";
        RemainAfterExit = true;
      };
      Install.WantedBy = [ "default.target" ];
    };

    home.file.".mailcap".text =
      let
        setsid = "${pkgs.util-linux}/bin/setsid";
        openfile = "${pkgs.writeShellScript "openfile" ''
        # Helps open a file with xdg-open from mutt in a external program without weird side effects.
        tempdir="''${TMPDIR:-$(mktemp -d)}"
        file="$tempdir/$(basename "$1")"
        [ "$(uname)" = "Darwin" ] && opener="open" || opener="${setsid} -f ${pkgs.xdg_utils}/bin/xdg-open"
        mkdir -p "$tempdir"
        cp -f "$1" "$file"
        $opener "$file" >/dev/null 2>&1
        find "''${tempdir:?}" -mtime +1 -type f -delete
      ''}";
      in
      ''
        ${lib.optionalString false "text/html; ${pkgs.w3m}/bin/w3m -dump -T text/html -I %{charset} -O utf-8 %s; copiousoutut; description=HTML Text; nametemplate=%s.html"}
        text/plain; $EDITOR %s ;
        ${lib.optionalString true "text/html; ${openfile} %s ; nametemplate=%s.html"}
        text/html; ${pkgs.lynx}/bin/lynx -assume_charset=%{charset} -display_charset=utf-8 -dump %s; nametemplate=%s.html; copiousoutput;
        image/*; ${openfile} %s ;
        application/pdf; ${openfile} %s ;
        # application/pgp-encrypted; gpg -d '%s'; copiousoutput;
      '';

    home.file.".urlview".text = ''
      REGEXP (((http|https|ftp|gopher)|mailto)[.:][^ >"\t]*|www\.[-a-z0-9.]+)[^ .,;\t>">\):]
      COMMAND qutebrowser %s
    '';

    home.packages = with pkgs; [
      urlview
      ispell

      element-desktop
      weechat
    ];
  };
}