Compose HTML messages roundcube

NaSRi

Verified User
Joined
Aug 16, 2014
Messages
82
Hi everybody

I need to edit default value of Compose HTML messages to always when an email account is created as well as default value for " When replying " to "start new message above the quote"

I have a script to install DA on our servers and this should be done via the script but I don't know how to do it.


Do you have any idea about this?
 
Adding the following to /var/www/html/roundcube/config/config.inc.php should do the trick:
Code:
$config['htmleditor'] = 2;

Please don't forget to copy it to custombuild custom/ directory, so that it wouldn't get overwritten with updates:
https://help.directadmin.com/item.php?id=365
 
Maybe roundcube can't use custom.
I copied the files config.inc.php to the folder below, but the html codes remain unchanged.
/usr/local/directadmin/custombuild/custom/roundcube/config/config.inc.php
It only changes according to the original address at
/var/www/html/roundcubemail-1.6.0/config
 
I copied the files config.inc.php to the folder below, but the html codes remain unchanged.
Correct, that's because you made an understandable mistake.

You must leave out the /config/ directory in custom in this case do not use:
/usr/local/directadmin/custombuild/custom/roundcube/config/config.inc.php
but instead use:
/usr/local/directadmin/custombuild/custom/roundcube/config.inc.php

I remembered because I used a custom config for Roundcube in the past. However, I found it's also stated in the docs:

Please next time don't up an 6 year old post. As you can see things change over time. It's better to create a new thread then and if needed refer to the old thread.
 
Back
Top