How can to increase the maximum attachment in webmail?

You need to increase the PHP directives below from the php.ini (/etc/php.ini) file. 
upload_max_filesize
post_max_size

Increase those two according to your preference.
Then restart Apache for those changes to take affect.

There's also a setting in Horde regarding attachment size. Make sure to set it to zero or no limit.
It's "attach_size_limit" option in /etc/psa-horde/imp/conf.php.

$conf['compose']['attach_size_limit'] = '0';
  • 0 gebruikers vonden dit artikel nuttig
Was dit antwoord nuttig?

Gerelateerde artikelen

Allow directory listing in Linux VPS

To allow directory listing or directory browsing in your Linux VPS, create a .htaccess file (Yes,...

Blank page in Horde webmail

When opening an email from Horde webmail, the frame that's suppose to show the message came up as...

How to import/export mysql database from SSH?

From SSH command line, issue the following command:mysql -u username -p database_name <...

Upgrading PHP

By default, PHP that's on Linux VPS is version 5.1.6. In case your web application requires...