Skip to content

Commit

Permalink
chore: single account with normal username
Browse files Browse the repository at this point in the history
  • Loading branch information
orzklv committed Nov 3, 2024
1 parent 20516a4 commit c995bc5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion modules/nixos/nixpkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

# Broken wasm-bindgen
(final: prev: {
stalwart-mail = final.unstable.stalwart-mail.overrideAttrs (old: {
stalwart-mail-wbf = final.unstable.stalwart-mail.overrideAttrs (old: {
passthru.webadmin = final.unstable.stalwart-mail.webadmin.override {
wasm-bindgen-cli = final.unstable.wasm-bindgen-cli.override {
version = "0.2.93";
Expand Down
13 changes: 4 additions & 9 deletions nixos/kolyma-1/services/mail.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ in

services.stalwart-mail = {
enable = true;
package = pkgs.stalwart-mail;
package = pkgs.stalwart-mail-wbf;
openFirewall = true;

settings = {
Expand Down Expand Up @@ -88,15 +88,10 @@ in
principals = [
{
class = "individual";
name = "Sokhibjon Orzikulov";
name = "orzklv";
description = "Sokhibjon Orzikulov";
secret = "%{file:${config.sops.secrets."mail/users/sakhib".path}}%";
email = [ "orzklv@kolyma.uz" "admin@kolyma.uz" ];
}
{
class = "individual";
name = "postmaster";
secret = "%{file:${config.sops.secrets."mail/users/sakhib".path}}%";
email = [ "postmaster@kolyma.uz" ];
email = [ "orzklv@kolyma.uz" "admin@kolyma.uz" "postmaster@kolyma.uz" ];
}
];
};
Expand Down

0 comments on commit c995bc5

Please sign in to comment.