diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-11-23 01:23:20 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-11-23 01:23:20 +0100 |
| commit | a988cabec09c28ba11a0e46f0acdc564aa04baca (patch) | |
| tree | 2e5cd0e1dc2710d30e8055f836b55a6929c87df4 /src/lib/send_notification_email_job.cc | |
| parent | 38643ec631074ae628a4c414a1e7a3462aba19ed (diff) | |
Clarify error messages about missing configuration.
Diffstat (limited to 'src/lib/send_notification_email_job.cc')
| -rw-r--r-- | src/lib/send_notification_email_job.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/send_notification_email_job.cc b/src/lib/send_notification_email_job.cc index 2dd1f63f2..f40e8fefa 100644 --- a/src/lib/send_notification_email_job.cc +++ b/src/lib/send_notification_email_job.cc @@ -67,7 +67,7 @@ SendNotificationEmailJob::run () auto config = Config::instance (); if (config->mail_server().empty()) { - throw NetworkError (_("No mail server configured in preferences")); + throw MissingConfigurationError(_("No outgoing mail server configured in the Email tab of preferences")); } set_progress_unknown (); |
