Skip to content

Commit 0740565

Browse files
author
horfic
committed
*) Added Mailman integration
1 parent e9d71f1 commit 0740565

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+12580
-11157
lines changed

install/autoupdate.php

Lines changed: 314 additions & 309 deletions
Large diffs are not rendered by default.

install/dist/conf/debian40.conf.php

Lines changed: 194 additions & 189 deletions
Large diffs are not rendered by default.

install/dist/conf/debian60.conf.php

Lines changed: 194 additions & 189 deletions
Large diffs are not rendered by default.

install/install.php

Lines changed: 491 additions & 482 deletions
Large diffs are not rendered by default.

install/lib/installer_base.lib.php

Lines changed: 1780 additions & 1726 deletions
Large diffs are not rendered by default.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
ALTER TABLE client ADD COLUMN limit_mailmailinglist int(11) NOT NULL default '-1';
2+
ALTER TABLE client_template ADD COLUMN limit_mailmailinglist int(11) NOT NULL default '-1';
3+
4+
CREATE TABLE IF NOT EXISTS `mail_mailinglist` (
5+
`mailinglist_id` int(11) unsigned NOT NULL auto_increment,
6+
`sys_userid` int(11) unsigned NOT NULL default '0',
7+
`sys_groupid` int(11) unsigned NOT NULL default '0',
8+
`sys_perm_user` varchar(5) NOT NULL,
9+
`sys_perm_group` varchar(5) character set ucs2 NOT NULL,
10+
`sys_perm_other` varchar(5) NOT NULL,
11+
`server_id` int(11) unsigned NOT NULL default '0',
12+
`domain` varchar(255) NOT NULL,
13+
`listname` varchar(255) NOT NULL,
14+
`email` varchar(255) NOT NULL,
15+
`password` varchar(255) NOT NULL,
16+
PRIMARY KEY (`mailinglist_id`)
17+
) ENGINE=MyISAM AUTO_INCREMENT=1;
18+
19+
DROP TABLE `mail_mailman_domain`;

0 commit comments

Comments
 (0)