Skip to content

Commit 0ab2113

Browse files
committed
docs(config): added missing smtp config section, fixes grafana#6155
1 parent 50d146e commit 0ab2113

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

docs/sources/installation/configuration.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,33 @@ Grafana backend index those json dashboards which will make them appear in regul
492492
### path
493493
The full path to a directory containing your json dashboards.
494494

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+
495522
## [log]
496523

497524
### mode

pkg/core/core.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package core
2+
3+
import "context"
4+
5+
type GrafanaServer interface {
6+
context.Context
7+
}
8+
9+
type GrafanaServerImpl struct {
10+
}

0 commit comments

Comments
 (0)