1 (edited by northian 2020-01-08 01:04:31)

Topic: Can't add an attachment over 15 bytes

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 1.0
- Deployed with iRedMail Easy or the downloadable installer? Downloadable Installer
- Linux/BSD distribution name and version: Ubuntu Server 18.04 LTS
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx): Nginx
- Manage mail accounts with iRedAdmin-Pro? no
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

So I was wondering if anyone else is having this problem. I have successfully got my email server running thanks to iRedMail. There is only one issue, I can't seem to send an attachment over 15 Bytes. I tried looking at the configs for the separate services postfix, php, and nginx. They seem to be fine and in working order. I have attached a screenshot of the error message.

Anyone have any suggestions?

Edit: I can forward an email that already has an attachment attached, I just can't create a new email and attach an item.

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: Can't add an attachment over 15 bytes

hi,

try:

/opt/www/roundcubemail/config/config.inc.php
$config['max_message_size'] = '15';
should be:
$config['max_message_size'] = '15M';

cheers

3

Re: Can't add an attachment over 15 bytes

udi111 wrote:

hi,

try:

/opt/www/roundcubemail/config/config.inc.php
$config['max_message_size'] = '15';
should be:
$config['max_message_size'] = '15M';

cheers


That was the problem! Thanks for the help.