Skip to content

Commit

Permalink
Merge pull request #710 from EugenDipner/master
Browse files Browse the repository at this point in the history
increase password field length for Mail Manager and MailScanner
  • Loading branch information
EugenDipner authored Jun 20, 2022
2 parents 2cf45df + 82ff162 commit e6b18b3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions db_update.php
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,13 @@
('50', 'hysmyeongjostdmedium', 'Hysmyeongjostd Medium')", array());
echo "<br>adding new fonts done <br>";

echo "<br>increase password field length for Mail Manager and MailScanner<br>";
$query = "ALTER TABLE `vtiger_mailscanner` CHANGE `password` `password` VARCHAR( 4000 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL ;";
$adb->pquery($query, array());
$query = "ALTER TABLE `vtiger_mail_accounts` CHANGE `mail_password` `mail_password` VARCHAR( 4000 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL;";
$adb->pquery($query, array());
echo "increase done.<br>";



$query = "UPDATE `vtiger_version` SET `tag_version` = ?";
Expand Down

0 comments on commit e6b18b3

Please sign in to comment.