You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am building a systme where I add domains to maddy via api. I have already built the api part (if anyone finds this useful I'm happy to share). Now I'd like to, inatead of passing local_domains via ENV, read them from a postgres table, in a way that I do not need to restart maddy to make these domains visible to the modules.
Note alternatives you considered and why they are not useful.
Your idea for a solution
Tried this
table.sql_query allowed_domains {
driver postgres
named_args no
dsn "postgres dsn"
lookup "SELECT domain FROM domains where domain = $1"
list "SELECT domain FROM domains"
}
whatever {
modify {
dkim {
domains $(primary_domain) $(local_domains) &allowed_domains
selector default
key_path dkim-keys/{domain}-{selector}.key
sig_expiry 120h # 5 days
hash sha256
newkey_algo rsa2048
}
}
}
How your solution would work in general?
Did not, domains are not in the list
[x ] I'm willing to help with the implementation
The text was updated successfully, but these errors were encountered:
Thought I'd add a POC. Currently I'm able to generate keys by pulling a list of domains from a database, as well as generate keys on the fly for new domains, on the first time they're needed.
Configuration looks like this:
table.sql_query allowed_domains {
driver postgres
named_args no
dsn "postgres dsn"
lookup "SELECT domain FROM domains where domain = $1"
list "SELECT domain FROM domains"
}
whatever {
modify {
dkim {
domains $(primary_domain) $(local_domains)
selector default
domain_tbl &allowed_domains
key_path dkim-keys/{domain}-{selector}.key
sig_expiry 120h # 5 days
hash sha256
newkey_algo rsa2048
}
}
}
Use case
I am building a systme where I add domains to maddy via api. I have already built the api part (if anyone finds this useful I'm happy to share). Now I'd like to, inatead of passing local_domains via ENV, read them from a postgres table, in a way that I do not need to restart maddy to make these domains visible to the modules.
Note alternatives you considered and why they are not useful.
Your idea for a solution
Tried this
How your solution would work in general?
Did not, domains are not in the list
The text was updated successfully, but these errors were encountered: