mirror of
https://github.com/cypht-org/cypht.git
synced 2026-04-24 20:46:04 +03:00
[GH-ISSUE #1815] 🐛 [Bug] Setting is not saved correctly #715
Labels
No labels
2fa
I18N
PGP
Security
Security
account
advanced_search
advanced_search
announcement
api_login
authentication
awaiting feedback
blocker
bug
bug
bug
calendar
config
contacts
core
core
devops
docker
docs
duplicate
dynamic_login
enhancement
epic
feature
feeds
framework
github
github
gmail_contacts
good first issue
help wanted
history
history
imap
imap_folders
inline_message
installation
keyboard_shortcuts
keyboard_shortcuts
ldap_contacts
mobile
need-ssh-access
new module set
nux
pop3
profiles
pull-request
question
refactor
release
research
saved_searches
smtp
strategic
tags
tests
themes
website
wordpress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/cypht#715
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kevinend51 on GitHub (Dec 23, 2025).
Original GitHub issue: https://github.com/cypht-org/cypht/issues/1815
Originally assigned to: @IrAlfred on GitHub.
🐛 Bug
Here's my cypht's docker compose:
After a fresh start, I perform the following step:
Version & Environment
Rev: cypht/cypht:2.5.1
OS: []
@IrAlfred commented on GitHub (Dec 23, 2025):
Thank you @kevinend51 for reporting this, we are going to investigate about it !
@IrAlfred commented on GitHub (Jan 16, 2026):
Hi @kevinend51
We have been unable to reproduce this issue on our end. Could you please retest to confirm it's still occurring?
If the problem persists, we can schedule a brief screenshare session to investigate further. To coordinate, please send me a direct message (DM) on Matrix at https://matrix.to/#/@iralfred:gitter.im (user: @iralfred).
@moxventura commented on GitHub (Jan 19, 2026):
@kevinend51 I just noticed your mariadb version is set to 12.1.2 while the examples suggest mariadb:10 did you test if it works with mariadb:10?
@kevinend51 commented on GitHub (Jan 20, 2026):
Hi, I've retest with cypht 2.6.0 + mariadb 10. This issue still occurs. First I add an account, saved and logout. After login again, I cannot find the account I added before.
@jflaplante commented on GitHub (Jan 31, 2026):
I have the same issue with a first time install.
First login works, I created 5 profiles, all of them worked. Logged out and logged back in, everything was gone and 'so alone' was displayed.
services:
cypht:
depends_on:
db:
condition: service_healthy
environment:
- AUTH_USERNAME=cy_admin
- AUTH_PASSWORD=xxxxx
- DB_CONNECTION_TYPE=host
- DB_DRIVER=mysql
- DB_HOST=db
- DB_NAME=cypht
- DB_USER=cypht
- DB_PASS=xxxxx
- SESSION_TYPE=DB
- USER_CONFIG_TYPE=DB
image: cypht/cypht:latest
ports:
- '38080:80'
restart: unless-stopped
volumes:
- /mnt/Data_01/Applications/cypht/users
- /mnt/Data_01/Applications/cypht/attachements
db:
environment:
- MYSQL_ROOT_PASSWORD=xxxxx
- MYSQL_DATABASE=cypht
- MYSQL_USER=cypht
- MYSQL_PASSWORD=xxxxx
healthcheck:
interval: 10s
retries: 5
test:
- CMD
- mysqladmin
- ping
- '-h'
- localhost
- '-ucypht'
- '-pcypht_password'
timeout: 5s
image: mariadb:10
restart: unless-stopped
volumes:
- /mnt/Data_01/Applications/cypht/mysql
version: '3.8'
I also tried with the USER_CONFIG_TYPE set to file, created a user with the php script and then successfully logged in. I created a few profiles that worked logged out and back in and everything was gone again.
@IrAlfred commented on GitHub (Jan 31, 2026):
Did you save the settings before you log out ?
@jflaplante commented on GitHub (Jan 31, 2026):
Pardon my ignorance, the answer 'was' no.... I tried again and now I've found the 'save' button. This is very counter intuitive compared to every other software I've used so I didn't even thought about doing that. Once I hit 'finish' and mail starts coming in, I assume that was sufficient.
I don't see a use case where I would want a profile i just created to disappear but I should have been more attentive to the notifications, as this is well displayed, at least in 2.6.0 When I initially wrote here, I was using the 'latest' tag which pointed to the 2.5.x train and I didn't notice the notifications. They were probably there, I just didn't see them.
So sorry for disturbing you...
@IrAlfred commented on GitHub (Feb 3, 2026):
@jflaplante Thank you for your feedback.