-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Open
Description
I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.
- Yes
The bug
When you change email settings (such as SMTP server, password etc), fields are shown with "Unsaved change" badge.
The problem is that when you click "Send test email and save", UI doesn't update even though the changes are actually saved correctly.
This is a minor issue but can be quite confusing.
The OS that Immich Server is running on
Debian
Version of Immich Server
v2.5.6
Version of Immich Mobile App
v2.5.6 build.246
Platform with the issue
- Server
- Web
- Mobile
Device make and model
No response
Your docker-compose.yml content
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:v2.5.6@sha256:aa163d2e1cc2b16a9515dd1fef901e6f5231befad7024f093d7be1f2da14341a
extends:
file: hwaccel.transcoding.yml
service: quicksync
volumes:
- ${UPLOAD_LOCATION}:/data
env_file:
- .env
ports:
- 2283:2283
- 8081:8081
depends_on:
- redis
- database
restart: unless-stopped
immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:v2.5.6@sha256:b213fa3c82d27a21a299c46ffbb38a091f18384db1ad67d409a3b34fe0fce556 #-openvino
# extends:
# file: hwaccel.ml.yml
# service: openvino # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerate
volumes:
- ${APPDATA_LOCATION}/model-cache:/cache
env_file:
- .env
restart: unless-stopped
redis:
container_name: immich_redis
image: valkey/valkey:8.1.5-alpine@sha256:918228e4ff7da6b3a4213cb18067f6e09d9f0503d0a08868699ba227cff71861
healthcheck:
test: redis-cli ping || exit 1
restart: unless-stopped
database:
container_name: immich_postgres
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:bcf63357191b76a916ae5eb93464d65c07511da41e3bf7a8416db519b40b1c23
env_file:
- .env
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
# Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs
# DB_STORAGE_TYPE: 'HDD'
volumes:
- ${APPDATA_LOCATION}/pgdata:/var/lib/postgresql/data
restart: unless-stoppedYour .env content
# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables
DATA_ROOT=/data
# The location where your uploaded files are stored
UPLOAD_LOCATION=${DATA_ROOT}/upload
APPDATA_LOCATION=${DATA_ROOT}/appdata
IMMICH_METRICS=true
DB_PASSWORD=...
# The values below this line do not need to be changed
###################################################################################
DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres
DB_DATABASE_NAME=immich
REDIS_HOSTNAME=immich_redisReproduction steps
- Go to /admin/system-settings?isOpen=notifications+email
- Change some settings
- Click "Send test email and save"
- Observe
Relevant log output
Additional information
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
To triage