@Turritopsis_Dohrnii,
In Postfix, the āmessage_size_limitā is by default set to ā1024000ā (approx. 10MB). This size includes every aspect of the message however including: headers, message, and attachments, etc.
Most servers today support a message size of at least 25MB these days, so to increase the size you can execute a few commands from the command line.
sudo postconf | grep ā^message_size_limit =ā
This command will tell you what the current āmessage_size_limitā is which likely will result in the initial value from the first part of the question.
Next, to change the value execute:
sudo postconf -e āmessage_size_limit=25600000ā
This will change the value in the Postfix configuration.
Once again, you can run:
sudo postconf | grep ā^message_size_limit =ā
Confirm that the value has been changed correctly.
Finally to apply the changes so that Postfix uses the update, run:
sudo systemctl restart postfix
Report back if this addresses your concern, or if you require further assistance.
*** the above instructions increases āmessage_size_limitā from 10MB to 25MB ***
Itās quite possible this change could be made from within Webmin via:
Webmin > Servers > Postfix
However Iām old school, so I prefer doing stuff via the command line
Good luck!