- What Grafana version and what operating system are you using?
Grafana 11.6.1, on Ubuntu server 24.04.2
- What are you trying to achieve?
Starting up the server after trying some SMTP settings, which I removed
- How are you trying to achieve it?
systemctl restart grafana-server
- What happened?
journalctl -xeu grafana-server.service
gives this entry
invalid email address for SMTP from_address config
- What did you expect to happen?
Successful launching of grafana-server
- Can you copy/paste the configuration(s) that you are having problems with?
I tried to configure SMTP, but reverted it to:
[smtp]
enabled = false
;host = localhost:25
;user =
If the password contains # or ; you have to wrap it with triple quotes. Ex “”“#password;”“”
;password =
;cert_file =
;key_file =
;skip_verify = false
;from_address = admin@grafana.localhost
;from_name = Grafana
EHLO identity in SMTP dialog (defaults to instance_name)
;ehlo_identity = dashboard.example.com
SMTP startTLS policy (defaults to ‘OpportunisticStartTLS’)
;startTLS_policy = NoStartTLS
Enable trace propagation in e-mail headers, using the ‘traceparent’, ‘tracestate’ and (optionally) ‘baggage’ fields (defaults to false)
;enable_tracing = false
I don’t understand how I can have SMTP “enabled = false” and still get a from_address error
- Did you receive any errors in the Grafana UI or in related logs? If so, please tell us exactly what they were.
Logs are set to debug and include console, yet they have no error message, only the journalctl command gives some hints
- Did you follow any online instructions? If so, what is the URL?
I googled for this error message but got no relevant hits