1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-12-13 01:45:59 +00:00

db: update schema to set dkim 4096 as default

This commit is contained in:
DerLinkman
2025-03-11 12:29:02 +01:00
parent 7e643376c7
commit 790b40a695

View File

@@ -4,7 +4,7 @@ function init_db_schema()
try {
global $pdo;
$db_version = "20112024_1105";
$db_version = "11032025_0926";
$stmt = $pdo->query("SHOW TABLES LIKE 'versions'");
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
@@ -1385,7 +1385,7 @@ function init_db_schema()
"relay_all_recipients" => 0,
"relay_unknown_only" => 0,
"dkim_selector" => "dkim",
"key_size" => 2048,
"key_size" => 4096,
"max_quota_for_domain" => 10240 * 1048576,
)
);