Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed values in sql structure for quota in mailboxes and goto in aliases #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: perl
before_install:
- sudo apt-get install libdbi-perl libdbd-mysql-perl libconfig-std-perl fakeroot perltidy libtest-pod-perl spamassassin libnet-imap-client-perl libcgi-fast-perl libdigest-perl-md5-perl libnet-server-perl libcrypt-generatepassword-perl libcgi-application-perl libcgi-application-extra-plugin-bundle-perl libdata-password-perl libdata-page-perl libreadonly-perl libtemplate-perl libhtml-clean-perl libtext-csv-xs-perl libio-socket-inet6-perl
- sudo apt-get install libdbi-perl libdbd-mysql-perl libconfig-std-perl fakeroot perltidy libtest-pod-perl spamassassin libnet-imap-client-perl libcgi-fast-perl libdigest-md5-perl libnet-server-perl libcrypt-generatepassword-perl libcgi-application-perl libcgi-application-extra-plugin-bundle-perl libdata-password-perl libdata-page-perl libreadonly-perl libtemplate-perl libhtml-clean-perl libtext-csv-xs-perl libio-socket-inet6-perl
perl:
- "5.16"
- "5.14"
Expand Down
4 changes: 2 additions & 2 deletions doc/vboxadm/mysql/vboxadm-current.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CREATE TABLE `aliases` (
`id` int(16) NOT NULL AUTO_INCREMENT,
`domain_id` int(16) NOT NULL,
`local_part` varchar(255) CHARACTER SET latin1 NOT NULL,
`goto` varchar(255) CHARACTER SET latin1 NOT NULL,
`goto` varchar(2040) CHARACTER SET latin1 NOT NULL,
`is_active` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `domain_id` (`domain_id`,`local_part`),
Expand Down Expand Up @@ -196,7 +196,7 @@ CREATE TABLE `mailboxes` (
`vacation_msg` text NOT NULL,
`vacation_start` date NOT NULL,
`vacation_end` date NOT NULL,
`quota` int(16) unsigned NOT NULL DEFAULT '26214400',
`quota` bigint(16) unsigned NOT NULL DEFAULT '26214400',
`is_domainadmin` tinyint(1) NOT NULL DEFAULT '0',
`is_siteadmin` tinyint(1) NOT NULL DEFAULT '0',
`sa_active` tinyint(1) NOT NULL DEFAULT '0',
Expand Down