This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Release 15.3.1 * access/email: Embed example TOML file The teleport repo changed to remove the exported `email.ExampleConfig` variable, but we depend on it here. Add the example config as a file and embed it in main. This plugin is on its last days as it gets migrated to the teleport repo, so duplicating this example config here for a short time will not become a maintenance issue.
- Loading branch information
Showing
37 changed files
with
175 additions
and
127 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
VERSION?=15.3.0 | ||
VERSION?=15.3.1 | ||
GO_VERSION=1.21.9 | ||
|
||
BUILDDIR ?= build | ||
|
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 @@ | ||
VERSION?=15.3.0 | ||
VERSION?=15.3.1 | ||
GO_VERSION=1.21.9 | ||
|
||
BUILDDIR ?= build | ||
|
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Example email plugin configuration TOML file | ||
|
||
[teleport] | ||
addr = "0.0.0.0:3025" # Teleport Auth Server GRPC API address | ||
|
||
# When using --format=file: | ||
# identity = "/var/lib/teleport/plugins/email/auth_id" # Identity file | ||
# refresh_identity = true # Refresh identity file on a periodic basis. | ||
# | ||
# When using --format=tls: | ||
# client_key = "/var/lib/teleport/plugins/email/auth.key" # Teleport TLS secret key | ||
# client_crt = "/var/lib/teleport/plugins/email/auth.crt" # Teleport TLS certificate | ||
# root_cas = "/var/lib/teleport/plugins/email/auth.cas" # Teleport CA certs | ||
|
||
[mailgun] | ||
domain = "your-domain-name" | ||
private_key = "xoxb-11xx" | ||
# private_key_file = "/var/lib/teleport/plugins/email/mailgun_private_key" | ||
|
||
[smtp] | ||
host = "smtp.gmail.com" | ||
port = 587 | ||
username = "[email protected]" | ||
password = "" | ||
# password_file = "/var/lib/teleport/plugins/email/smtp_password" | ||
starttls_policy = "mandatory" # mandatory|opportunistic|disabled | ||
|
||
[delivery] | ||
sender = "[email protected]" # From: email address | ||
|
||
[role_to_recipients] | ||
"dev" = "[email protected]" # All requests to 'dev' role will be sent to this address | ||
"*" = ["[email protected]", "[email protected]"] # These recipients will receive review requests not handled by the roles above | ||
|
||
[log] | ||
output = "stderr" # Logger output. Could be "stdout", "stderr" or "/var/lib/teleport/email.log" | ||
severity = "INFO" # Logger severity. Could be "INFO", "ERROR", "DEBUG" or "WARN". |
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 @@ | ||
VERSION?=15.3.0 | ||
VERSION?=15.3.1 | ||
GO_VERSION=1.21.9 | ||
|
||
BUILDDIR ?= build | ||
|
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 @@ | ||
VERSION?=15.3.0 | ||
VERSION?=15.3.1 | ||
GO_VERSION=1.21.9 | ||
|
||
BUILDDIR ?= build | ||
|
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 @@ | ||
VERSION?=15.3.0 | ||
VERSION?=15.3.1 | ||
GO_VERSION=1.21.9 | ||
|
||
BUILDDIR ?= build | ||
|
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 @@ | ||
VERSION?=15.3.0 | ||
VERSION?=15.3.1 | ||
GO_VERSION=1.21.9 | ||
|
||
BUILDDIR ?= build | ||
|
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 @@ | ||
VERSION?=15.3.0 | ||
VERSION?=15.3.1 | ||
GO_VERSION=1.21.9 | ||
|
||
BUILDDIR ?= build | ||
|
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
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.