Add enterprise cargo feature + Allow copying SEL licensed code for testing/development purposes (closes #602 closes #601)

This commit is contained in:
mdecimus
2024-07-08 18:37:58 +02:00
parent e2fc705ad7
commit 38ff4b9ea0
19 changed files with 82 additions and 46 deletions

View File

@@ -11,7 +11,7 @@ jmap_proto = { path = "../jmap-proto" }
smtp = { path = "../smtp" }
utils = { path = "../utils" }
common = { path = "../common" }
se_common = { path = "../se-common" }
se_common = { path = "../se-common", optional = true }
directory = { path = "../directory" }
smtp-proto = { version = "0.1" }
mail-parser = { version = "0.9", features = ["full_encoding", "serde_support", "ludicrous_mode"] }
@@ -61,3 +61,4 @@ quick-xml = "0.35"
[features]
test_mode = []
enterprise = ["se_common"]