gerd.starwart: fixed bug in fallback password + added custom patch
This commit is contained in:
parent
0a8f393f9d
commit
2f46a5197f
5 changed files with 108 additions and 12 deletions
|
@ -16,7 +16,7 @@
|
|||
./gerd/services/hedgedoc.nix
|
||||
./gerd/services/cyberchef.nix
|
||||
./gerd/services/nextcloud.nix
|
||||
./gerd/services/stalwart.nix
|
||||
./gerd/services/stalwart
|
||||
];
|
||||
|
||||
networking.hostName = "gerd";
|
||||
|
|
5
machines/gerd/services/stalwart/default.nix
Normal file
5
machines/gerd/services/stalwart/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./stalwart.nix
|
||||
];
|
||||
}
|
|
@ -0,0 +1,86 @@
|
|||
diff --git a/crates/cli/src/modules/cli.rs b/crates/cli/src/modules/cli.rs
|
||||
index 865b7c8e..f30ee8a8 100644
|
||||
--- a/crates/cli/src/modules/cli.rs
|
||||
+++ b/crates/cli/src/modules/cli.rs
|
||||
@@ -330,6 +330,12 @@ pub enum DomainCommands {
|
||||
name: String,
|
||||
},
|
||||
|
||||
+ /// List DNS records for domain
|
||||
+ DNSRecords {
|
||||
+ /// Domain name to list DNS records for
|
||||
+ name: String,
|
||||
+ },
|
||||
+
|
||||
/// List all domains
|
||||
List {
|
||||
/// Starting point for listing domains
|
||||
diff --git a/crates/cli/src/modules/domain.rs b/crates/cli/src/modules/domain.rs
|
||||
index bc0dd898..462e0251 100644
|
||||
--- a/crates/cli/src/modules/domain.rs
|
||||
+++ b/crates/cli/src/modules/domain.rs
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
use std::borrow::Cow;
|
||||
|
||||
-use prettytable::{Attr, Cell, Row, Table};
|
||||
+use prettytable::{Attr, Cell, Row, Table, format};
|
||||
use reqwest::Method;
|
||||
use serde_json::Value;
|
||||
|
||||
@@ -14,6 +14,15 @@ use crate::modules::List;
|
||||
|
||||
use super::cli::{Client, DomainCommands};
|
||||
|
||||
+use serde::{Deserialize, Serialize};
|
||||
+#[derive(Debug, Serialize, Deserialize, Clone)]
|
||||
+struct DnsRecord {
|
||||
+ #[serde(rename = "type")]
|
||||
+ typ: String,
|
||||
+ name: String,
|
||||
+ content: String,
|
||||
+}
|
||||
+
|
||||
impl DomainCommands {
|
||||
pub async fn exec(self, client: Client) {
|
||||
match self {
|
||||
@@ -37,6 +46,39 @@ impl DomainCommands {
|
||||
.await;
|
||||
eprintln!("Successfully deleted domain {name:?}");
|
||||
}
|
||||
+ DomainCommands::DNSRecords { name } => {
|
||||
+ let records = client
|
||||
+ .http_request::<Vec<DnsRecord>, String>(
|
||||
+ Method::GET,
|
||||
+ &format!("/api/domain/{name}"),
|
||||
+ None,
|
||||
+ )
|
||||
+ .await;
|
||||
+
|
||||
+ if !records.is_empty() {
|
||||
+ let mut table = Table::new();
|
||||
+ // no borderline separator, as long values will mess it up
|
||||
+ table.set_format(*format::consts::FORMAT_NO_BORDER_LINE_SEPARATOR);
|
||||
+
|
||||
+ table.add_row(Row::new(vec![
|
||||
+ Cell::new("Type").with_style(Attr::Bold),
|
||||
+ Cell::new("Name").with_style(Attr::Bold),
|
||||
+ Cell::new("Contents").with_style(Attr::Bold),
|
||||
+ ]));
|
||||
+
|
||||
+ for record in &records {
|
||||
+ table.add_row(Row::new(vec![
|
||||
+ Cell::new(&record.typ),
|
||||
+ Cell::new(&record.name),
|
||||
+ Cell::new(&record.content),
|
||||
+ ]));
|
||||
+ }
|
||||
+
|
||||
+ eprintln!();
|
||||
+ table.printstd();
|
||||
+ eprintln!();
|
||||
+ }
|
||||
+ }
|
||||
DomainCommands::List { from, limit } => {
|
||||
let query = if from.is_none() && limit.is_none() {
|
||||
Cow::Borrowed("/api/domain")
|
|
@ -25,12 +25,16 @@ in {
|
|||
services.stalwart-mail = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
# package = pkgs.stalwart-mail;
|
||||
|
||||
package = pkgs.stalwart-mail.overrideAttrs (old: {
|
||||
patches = old.patches ++ [
|
||||
./patches/stalwart-cli-dns-records.patch
|
||||
];
|
||||
});
|
||||
|
||||
settings = {
|
||||
lookup.default.hostname = svc_domain;
|
||||
|
||||
# tracer.stdout.level = "trace";
|
||||
store.db.path = "${stateDir}/db";
|
||||
|
||||
directory.ldap = {
|
||||
|
@ -104,7 +108,7 @@ in {
|
|||
# authentication
|
||||
authentication.fallback-admin = {
|
||||
user = "admin";
|
||||
secret = "%{file:${config.age.secrets.stalwart-admin-fallback-password.owner}}%";
|
||||
secret = "%{file:${config.age.secrets.stalwart-admin-fallback-password.path}}%";
|
||||
};
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue