# Informeer beheerder wanneer site-instellingen worden bijgewerkt door systeem

**URL:** https://meta.discourse.org/t/notify-admin-when-site-settings-are-updated-by-system/208961
**Category:** Feature
**Tags:** pr-welcome, site-settings
**Created:** [12 november 2021 om 10:03 UTC](https://meta.discourse.org/t/notify-admin-when-site-settings-are-updated-by-system/208961 "2021-11-12T10:03:47Z")
**Posts on this page:** 1
**Showing post:** 10

<div class="post-metadata">

### Author: ![Canapin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/canapin/32/119591_2.png) [@Canapin](https://meta.discourse.org/u/Canapin)
#### Post date: [13 augustus 2025 om 20:36 UTC](https://meta.discourse.org/t/notify-admin-when-site-settings-are-updated-by-system/208961/10 "2025-08-13T20:36:23Z")

</div>

Unless there were changes I wasn’t aware of (and I don’t think there were), I strongly approve this feature request.

I’ve encountered this issue several times when temporarily lacking disk space.

Every single time, I noticed the setting was disabled only by chance. I didn’t think of looking at setting changes when I reach a disk space threshold, even after experiencing his multiple times.

I’m pretty sure there are many instances in the wild that have this setting disabled without the admin even knowing it, just because they ran out of disk space one year ago.

The setting change is logged in `/admin/logs/staff_action_logs?filters=%7B"subject"%3A"download_remote_images_to_local"%7D`, but I don’t remember ever getting any notification when it triggers.

Ideally, I’d like either at least a warning in the dashboard, a notification in the user menu, or an email.

The context of the following quote was quite specific (and old), but it also applies here.

> [@Empty topics after a successful backup restore](https://meta.discourse.org/t/empty-topics-after-a-successful-backup-restore/139142/7):
>
> if a value of a specific setting needs to be changed, I would want to expect Discourse to tell the admin what’s going on. It’s just about being transparent and making the admin life less painful.

An absence of any kind of notification when a setting is changed by @system can be detrimental.

* * *

When I notice **download\_remote\_images\_to\_local** has been disabled at some point, I run one of (or both, once) these rails scripts to trigger the download of remote files:

# Rebake all posts from a given date

```ruby
i = 0
Post.where('created_at >= ?', Date.new(2023, 5, 1)).where('user_id > 0').find_each do |post|
  post.rebake!
  puts "Post #{post.id}, Created at #{post.created_at}"
  i += 1
end

puts "Total number of posts rebaked: #{i}"

```

# Rebake all posts between two given dates

```ruby
i = 0
Post.where('created_at >= ? AND created_at < ?', Date.new(2021, 12, 1), Date.new(2022, 3, 1)).where('user_id > 0').find_each do |post|
  post.rebake!
  puts "Post #{post.id}, Created at #{post.created_at}"
  i += 1
end

puts "Total number of posts rebaked: #{i}"

```

---

_[View the full topic](https://meta.discourse.org/t/notify-admin-when-site-settings-are-updated-by-system/208961)._
