Feature #308
postfixadmin package requested
| Status: | New | Start: | 03/05/2010 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assigned to: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - |
Description
http://sourceforge.net/projects/postfixadmin/
in latest version (2.3 2009-10-24) there is a bug for domain list - incorrect SELECT
it could be corrected according to idea described here: http://sourceforge.net/tracker/index.php?func=detail&aid=2859165&group_id=191583&atid=937964
the simple resolution is to use exact filed names instead of '*' list-domain.php file
$query = "
SELECT domain.domain, domain.description, domain.aliases, domain.mailboxes,
domain.maxquota, domain.quota, domain.transport, domain.backupmx, domain.created,
domain.modified, domain.active, COUNT AS mailbox_count
FROM domain
LEFT JOIN mailbox ON domain.domain = mailbox.domain
$where
GROUP BY domain.domain, domain.description, domain.aliases, domain.mailboxes,
domain.maxquota, domain.quota, domain.transport, domain.backupmx, domain.created,
domain.modified, domain.active
ORDER BY domain.domain
";
Watchers
History
Updated by Ted Trask about 1 month ago
This package has not been created, but http://wiki.alpinelinux.org/wiki/ISP_Mail_Server_HowTo now describes how to install postfixadmin and includes the mentioned bugfix (necessary for OpenLDAP based Address Book).