summaryrefslogtreecommitdiff
path: root/Com/Simatime/mail.nix
blob: 81bddc2b5a6aff8f19a5e20843b0c575f9f726f7 (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
{ ... }:

{
  mailserver = {
    enable = true;
    monitoring = {
      enable = false;
      alertAddress = "bsima@me.com";
    };
    fqdn = "simatime.com";
    domains = [ "simatime.com" "bsima.me" ];
    certificateScheme = 3; # let's encrypt
    enableImap = true;
    enablePop3 = true;
    enableImapSsl = true;
    enablePop3Ssl = true;
    enableManageSieve = true;
    virusScanning = false; # ur on ur own
    localDnsResolver = true;

    loginAccounts = {
      "ben@simatime.com" = {
        hashedPassword = "$6$Xr180W0PqprtaFB0$9S/Ug1Yz11CaWO7UdVJxQLZWfRUE3/rarB0driXkXALugEeQDLIjG2STGQBLU23//JtK3Mz8Kwsvg1/Zo0vD2/";
        aliases = [
          # my default email
          "ben@bsima.me"
          # admin stuff
          "postmaster@simatime.com"
          "abuse@simatime.com"
        ];
        catchAll = [ "simatime.com" "bsima.me" ];
        quota = "5G";
      };
      "nick@simatime.com" = {
        hashedPassword = "$6$31P/Mg8k8Pezy1e$Fn1tDyssf.1EgxmLYFsQpSq6RP4wbEvP/UlBlXQhyKA9FnmFtJteXsbJM1naa8Kyylo8vZM9zmeoSthHS1slA1";
        aliases = [
          "nicolai@simatime.com"
        ];
        quota = "1G";
      };
    };
  };
}