I checked on the internet and found one post saying one of the php file is checking the length while the database has 255 as the default value.
The file is message_parser.php sitting under includes/ directory.
Line# 1634
changed from:
Code: Select all
if (utf8_strlen(preg_replace('#\[\/?[a-z\*\+\-]+(=[\S]+)?\]#ius', ' ', $this->message)) > 100)
Code: Select all
if (utf8_strlen(preg_replace('#\[\/?[a-z\*\+\-]+(=[\S]+)?\]#ius', ' ', $this->message)) > 255)