mirror of
https://github.com/binwiederhier/ntfy.git
synced 2026-05-09 16:35:53 +02:00
[GH-ISSUE #1249] Make "MaxMessageBytes" configurable #882
Labels
No labels
ai-generated
android-app
android-app
android-app
🪲 bug
build
build
dependencies
docs
enhancement
enhancement
🔥 HOT
in-progress 🏃
ios
prio:low
prio:low
pull-request
question
🔒 security
server
server
unified-push
web-app
website
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ntfy#882
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 @AASluke on GitHub (Jan 4, 2025).
Original GitHub issue: https://github.com/binwiederhier/ntfy/issues/1249
Hi, new user here
I am self hosting using docker. For me the SMTP listener feature is exceptionally useful. But the message size seems to have a hard limit of 1048576 bytes, which I bumped into during first tests with my openmediavault instance:
The message size 2448907 exceeds size limit 1048576 of server 192.168.10.10 (which is the server my ntfy instance is running on). Therefore the ntfy server does not accept it and the message is bounced.
I not a software engineer and spent some time to figure this out - I think here is where this comes from.
So my
💡 Idea/Proposal
is, to add
SMTPServerMaxMessageBytesas a configurable value to the config file with the default value, it is currently fixed at.This way, we could configure it just as other parameters to accept SMTP messages with more than 1MB.
💻 Target components
ntfy server
Looking forward to hearing what you think!