mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
917a0cfe47
Discourse normally overrides the default notification email setting, which makes the `notificationEmailAddress` setting ineffective. Add a patch to remove this override. Fixes #140114.
19 lines
658 B
Diff
19 lines
658 B
Diff
diff --git a/db/fixtures/990_settings.rb b/db/fixtures/990_settings.rb
|
|
deleted file mode 100644
|
|
index 6f21e58813..0000000000
|
|
--- a/db/fixtures/990_settings.rb
|
|
+++ /dev/null
|
|
@@ -1,12 +0,0 @@
|
|
-# frozen_string_literal: true
|
|
-
|
|
-if SiteSetting.notification_email == SiteSetting.defaults[:notification_email]
|
|
- # don't crash for invalid hostname, which is possible in dev
|
|
- begin
|
|
- SiteSetting.notification_email = "noreply@#{Discourse.current_hostname}"
|
|
- rescue Discourse::InvalidParameters
|
|
- if Rails.env.production?
|
|
- STDERR.puts "WARNING: Discourse hostname: #{Discourse.current_hostname} is not a valid domain for emails!"
|
|
- end
|
|
- end
|
|
-end
|