File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
docs/sources/installation Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -492,6 +492,33 @@ Grafana backend index those json dashboards which will make them appear in regul
492
492
### path
493
493
The full path to a directory containing your json dashboards.
494
494
495
+ ## [ smtp]
496
+ Email server settings.
497
+
498
+ ### enabled
499
+ defaults to false
500
+
501
+ ### host
502
+ defaults to localhost:25
503
+
504
+ ### user
505
+ In case of SMTP auth, defaults to ` empty `
506
+
507
+ ### password
508
+ In case of SMTP auth, defaults to ` empty `
509
+
510
+ ### cert_file
511
+ File path to a cert file, defaults to ` empty `
512
+
513
+ ### key_file
514
+ File path to a key file, defaults to ` empty `
515
+
516
+ ### skip_verify
517
+ Verify SSL for smtp server? defaults to ` false `
518
+
519
+ ### from_address
520
+ Address used when sending out emails, defaults to ` admin@grafana.localhost `
521
+
495
522
## [ log]
496
523
497
524
### mode
Original file line number Diff line number Diff line change
1
+ package core
2
+
3
+ import "context"
4
+
5
+ type GrafanaServer interface {
6
+ context.Context
7
+ }
8
+
9
+ type GrafanaServerImpl struct {
10
+ }
You can’t perform that action at this time.
0 commit comments