|
Revision 2245, 0.6 kB
(checked in by anarcat, 5 months ago)
|
add a configuration variable to control the domain in the list urls. if
it is set, it will be used to construct the urls in the mailing list
listings. If it is unset, the list's domain name will be used.
the default behaviour is therefore reverted to the one before commit
[2097] where the list domain is used (without the prepended "mail.").
the NEWS file has more information on how to configure your installation
with the new setting.
Closes: #1131
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
CREATE TABLE IF NOT EXISTS `mailman` ( |
|---|
| 3 |
`id` int(10) unsigned NOT NULL auto_increment, |
|---|
| 4 |
`uid` int(10) unsigned NOT NULL default '0', |
|---|
| 5 |
`list` varchar(128) NOT NULL default '', |
|---|
| 6 |
`domain` varchar(255) NOT NULL default '', |
|---|
| 7 |
`name` varchar(255) NOT NULL default '', |
|---|
| 8 |
PRIMARY KEY (`id`) |
|---|
| 9 |
) TYPE=MyISAM COMMENT='Mailman mailing lists'; |
|---|
| 10 |
|
|---|
| 11 |
INSERT IGNORE INTO `variable` (name, value, comment) VALUES ('mailman_url', 0, |
|---|
| 12 |
' This is the domaine name that will be use to construct mailman\'s interface links. Set this to 0 or a "false" string to ignore and keep the default behavior (hosted domain in the URL).'); |
|---|