mirror of
https://github.com/modoboa/modoboa.git
synced 2026-04-26 09:26:00 +03:00
[GH-ISSUE #3648] use of MODOBOA_CUSTOM_LOGO in Webmail #1875
Labels
No labels
bug
bug
dependencies
design
documentation
duplicate
enhancement
enhancement
enhancement
feedback-needed
help-needed
help-needed
installer
invalid
looking-for-sponsors
modoboa-contacts
new-ui
new-ui
pr
pull-request
pyconfr
python
question
security
stale
webmail
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/modoboa-modoboa#1875
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 @tonioo on GitHub (Aug 1, 2025).
Original GitHub issue: https://github.com/modoboa/modoboa/issues/3648
Discussed in https://github.com/modoboa/modoboa/discussions/3646
Originally posted by xinomilo August 1, 2025
hey,
how do we use MODOBOA_CUSTOM_LOGO in webmail too? for newest modoboa >= 2.4.0
it's working fine without changes after upgrade to 2.4.x, for admin/account/contacts/calendars, but not webmail. webmail is using modoboa default logo.
thanks,
@xinomilo commented on GitHub (Aug 7, 2025):
just to let you know, just upgraded to modoboa==2.4.10 and MODOBOA_CUSTOM_LOGO isn't shown anywhere. default modoboa logo now in every frontend page.
@tonioo commented on GitHub (Aug 7, 2025):
@xinomilo Have you checked this page: https://modoboa.readthedocs.io/en/latest/configuration.html#custom-logo ?
@xinomilo commented on GitHub (Aug 8, 2025):
i did, but it seems some post-upgrade command, clears config.json and hadn't rechecked the file after 2.4.10 was installed.
so, works as before now, only webmail shows default modoboa logo.
thx,
@xinomilo commented on GitHub (Sep 9, 2025):
so, went to upgrade from 2.4.10 -> 2.5.0 just a while ago, and lost the custom logo completely.
manage.py load_initial_data clears config.json, but reinserted the CUSTOM LOGO variables as before, restarted uwsgi/nginx but no change. custom logo isnt' seen anywhere in modoboa, just a blank spot on the top left.
can anyone else confirm or is it just local issue? (if confirmed i can open a new bug...)
(no messages or uwsgi/nginx errors)
@xinomilo commented on GitHub (Sep 9, 2025):
got a hint : if i add '/media/' to logo path in config.json, it works again. webmail too.
working config.json :
"MENU_LOGO_PATH": "/media/logo.png",
"CREATION_FORM_LOGO_PATH": "/media/logo.png"
(untouched) settings.py :
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MODOBOA_CUSTOM_LOGO = os.path.join(MEDIA_URL, "logo.png")