forked from lavabit/magma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Massive renaming of SSL variables/columns/etc to TLS.
- Loading branch information
Showing
31 changed files
with
223 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#magma.smtp.bypass_addr = | ||
#magma.smtp.bypass_addr = | ||
|
||
magma.admin.contact = [email protected] | ||
magma.admin.abuse = [email protected] | ||
|
@@ -17,7 +17,7 @@ magma.log.time = false | |
|
||
magma.system.domain = example.com | ||
|
||
magma.web.ssl_redirect = 127.0.0.1:10500 | ||
magma.web.tls_redirect = 127.0.0.1:10500 | ||
magma.web.statistics = true | ||
|
||
magma.dkim.enabled = true | ||
|
@@ -46,7 +46,7 @@ magma.iface.database.host = localhost | |
magma.iface.database.password = ${MYSQL_PASSWORD} | ||
magma.iface.database.pool.connections = 6 | ||
magma.iface.database.schema = ${MYSQL_SCHEMA} | ||
#magma.iface.database.socket_path = | ||
#magma.iface.database.socket_path = | ||
magma.iface.database.user = ${MYSQL_USER} | ||
|
||
|
||
|
@@ -64,7 +64,7 @@ magma.web.portal.safeguard = false | |
|
||
magma.relay.timeout = 60 | ||
magma.relay[1].name = localhost | ||
magma.relay[1].port = 7000 | ||
magma.relay[1].port = 2525 | ||
|
||
magma.servers[1].name = Lavabit Molten | ||
magma.servers[1].domain = example.com | ||
|
@@ -81,111 +81,111 @@ magma.servers[3].name = Lavabit SMTP | |
magma.servers[3].domain = example.com | ||
magma.servers[3].protocol = SMTP | ||
magma.servers[3].network.port = 7000 | ||
magma.servers[3].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[3].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[4].name = Lavabit SMTP | ||
magma.servers[4].domain = example.com | ||
magma.servers[4].protocol = SMTP | ||
magma.servers[4].network.port = 7050 | ||
magma.servers[4].network.ipv6 = true | ||
magma.servers[4].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[4].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[5].name = Lavabit SMTPS | ||
magma.servers[5].domain = example.com | ||
magma.servers[5].protocol = SMTP | ||
magma.servers[5].network.port = 7500 | ||
magma.servers[5].network.type = SSL | ||
magma.servers[5].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[5].network.type = TLS | ||
magma.servers[5].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[6].name = Lavabit SMTPS | ||
magma.servers[6].domain = example.com | ||
magma.servers[6].protocol = SMTP | ||
magma.servers[6].network.port = 7550 | ||
magma.servers[6].network.ipv6 = true | ||
magma.servers[6].network.type = SSL | ||
magma.servers[6].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[6].network.type = TLS | ||
magma.servers[6].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[7].name = Lavabit POP | ||
magma.servers[7].domain = example.com | ||
magma.servers[7].protocol = POP | ||
magma.servers[7].network.port = 8000 | ||
magma.servers[7].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[7].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[8].name = Lavabit POP | ||
magma.servers[8].domain = example.com | ||
magma.servers[8].protocol = POP | ||
magma.servers[8].network.port = 8050 | ||
magma.servers[8].network.ipv6 = true | ||
magma.servers[8].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[8].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[9].name = Lavabit POPS | ||
magma.servers[9].domain = example.com | ||
magma.servers[9].protocol = POP | ||
magma.servers[9].network.port = 8500 | ||
magma.servers[9].network.type = SSL | ||
magma.servers[9].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[9].network.type = TLS | ||
magma.servers[9].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[10].name = Lavabit POPS | ||
magma.servers[10].domain = example.com | ||
magma.servers[10].protocol = POP | ||
magma.servers[10].network.port = 8550 | ||
magma.servers[10].network.ipv6 = true | ||
magma.servers[10].network.type = SSL | ||
magma.servers[10].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[10].network.type = TLS | ||
magma.servers[10].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[11].name = Lavabit IMAP | ||
magma.servers[11].domain = example.com | ||
magma.servers[11].protocol = IMAP | ||
magma.servers[11].network.port = 9000 | ||
magma.servers[11].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[11].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[12].name = Lavabit IMAP | ||
magma.servers[12].domain = example.com | ||
magma.servers[12].protocol = IMAP | ||
magma.servers[12].network.port = 9050 | ||
magma.servers[12].network.ipv6 = true | ||
magma.servers[12].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[12].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[13].name = Lavabit IMAPS | ||
magma.servers[13].domain = example.com | ||
magma.servers[13].protocol = IMAP | ||
magma.servers[13].network.port = 9500 | ||
magma.servers[13].network.type = SSL | ||
magma.servers[13].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[13].network.type = TLS | ||
magma.servers[13].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[14].name = Lavabit IMAPS | ||
magma.servers[14].domain = example.com | ||
magma.servers[14].protocol = IMAP | ||
magma.servers[14].network.port = 9550 | ||
magma.servers[14].network.ipv6 = true | ||
magma.servers[14].network.type = SSL | ||
magma.servers[14].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[14].network.type = TLS | ||
magma.servers[14].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[15].name = Lavabit HTTP | ||
magma.servers[15].domain = example.com | ||
magma.servers[15].protocol = HTTP | ||
magma.servers[15].network.port = 10000 | ||
magma.servers[15].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[15].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[16].name = Lavabit HTTP | ||
magma.servers[16].domain = example.com | ||
magma.servers[16].protocol = HTTP | ||
magma.servers[16].network.port = 10050 | ||
magma.servers[16].network.ipv6 = true | ||
magma.servers[16].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[16].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[17].name = Lavabit HTTPS | ||
magma.servers[17].domain = example.com | ||
magma.servers[17].protocol = HTTP | ||
magma.servers[17].network.port = 10500 | ||
magma.servers[17].network.type = SSL | ||
magma.servers[17].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[17].network.type = TLS | ||
magma.servers[17].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
||
magma.servers[18].name = Lavabit HTTPS | ||
magma.servers[18].domain = example.com | ||
magma.servers[18].protocol = HTTP | ||
magma.servers[18].network.port = 10550 | ||
magma.servers[18].network.ipv6 = true | ||
magma.servers[18].network.type = SSL | ||
magma.servers[18].ssl.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
magma.servers[18].network.type = TLS | ||
magma.servers[18].tls.certificate = ${BASE_DIR}/res/config/localhost.localdomain.pem | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.