Skip to content
Snippets Groups Projects
Commit 43787a38 authored by Prasad's avatar Prasad
Browse files

Merge branch 'allow_long_mails' into 'master'

allow long emails to be stored intact fix #10

this is for inbound emails with a longish body, truncating HTML emails is very messy, so lets give a bit more space to store them.

See merge request !53
parents 6bd94956 3b4889a8
No related branches found
No related tags found
No related merge requests found
...@@ -55,5 +55,8 @@ $adb->pquery("Update vtiger_settings_field set linkto='index.php?parent=Settings ...@@ -55,5 +55,8 @@ $adb->pquery("Update vtiger_settings_field set linkto='index.php?parent=Settings
$adb->pquery("Update vtiger_settings_field set linkto='index.php?module=Workflows&parent=Settings&view=List' where name='LBL_LIST_WORKFLOWS'", array()); $adb->pquery("Update vtiger_settings_field set linkto='index.php?module=Workflows&parent=Settings&view=List' where name='LBL_LIST_WORKFLOWS'", array());
$adb->pquery("Update vtiger_settings_field set linkto='index.php?module=Vtiger&parent=Settings&view=ConfigEditorDetail' where name='LBL_CONFIG_EDITOR'", array()); $adb->pquery("Update vtiger_settings_field set linkto='index.php?module=Vtiger&parent=Settings&view=ConfigEditorDetail' where name='LBL_CONFIG_EDITOR'", array());
//allow large emails to be stored.
$adb->pquery("ALTER TABLE vtiger_crmentity MODIFY COLUMN description MEDIUMTEXT", array());
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment