mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
This commit will: 1. Change the user account database from sqlite to OpenLDAP 2. Add policyd-spf to postfix for SPF validation 3. Add a test runner with some automated test suites Notes: User account password hashes are preserved. There is a new Roundcube contact list called "Directory" that lists the users in LDAP (MiaB users), similar to what Google Suite does. Users can still change their password in Roundcube. OpenLDAP is configured with TLS, but all remote access is blocked by firewall rules. Manual changes are required to open it for remote access (eg. "ufw allow proto tcp from <HOST> to any port ldaps"). The test runner is started by executing tests/runner.sh. Be aware that it will make changes to your system, including adding new users, domains, mailboxes, start/stop services, etc. It is highly unadvised to run it on a production system! The LDAP schema that supports mail delivery with postfix and dovecot is located in conf/postfix.schema. This file is copied verbatim from the LdapAdmin project (GPL, ldapadmin.org). Instead of including the file in git, it could be referenced by URL and downloaded by the setup script if GPL is an issue or apply for a PEN from IANA. Mangement console and other services should not appear or behave any differently than before.
61 lines
1.5 KiB
Plaintext
61 lines
1.5 KiB
Plaintext
# LDAP Admin Extensions for Postfix MTA support
|
|
|
|
attributetype ( 1.3.6.1.4.1.15347.2.102
|
|
NAME 'transport'
|
|
SUP name)
|
|
|
|
attributetype ( 1.3.6.1.4.1.15347.2.101
|
|
NAME 'mailRoutingAddress'
|
|
SUP mail )
|
|
|
|
attributetype ( 1.3.6.1.4.1.15347.2.110 NAME 'maildest'
|
|
DESC 'Restricted to send only to local network'
|
|
EQUALITY caseIgnoreMatch
|
|
SUBSTR caseIgnoreSubstringsMatch
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} )
|
|
|
|
attributetype ( 1.3.6.1.4.1.15347.2.111 NAME 'mailaccess'
|
|
DESC 'Can be mailed to restricted groups'
|
|
EQUALITY caseIgnoreMatch
|
|
SUBSTR caseIgnoreSubstringsMatch
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} )
|
|
|
|
attributetype ( 1.3.6.1.4.1.15347.2.100
|
|
NAME ( 'maildrop' )
|
|
DESC 'RFC1274: RFC822 Mailbox'
|
|
EQUALITY caseIgnoreIA5Match
|
|
SUBSTR caseIgnoreIA5SubstringsMatch
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} )
|
|
|
|
attributetype ( 1.3.6.1.4.1.10018.1.1.1 NAME 'mailbox'
|
|
DESC 'The absolute path to the mailbox for a mail account in a non-default location'
|
|
EQUALITY caseExactIA5Match
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE )
|
|
|
|
objectclass ( 1.3.6.1.4.1.15347.2.1
|
|
NAME 'mailUser'
|
|
DESC 'E-Mail User'
|
|
SUP top
|
|
AUXILIARY
|
|
MUST ( uid $ mail $ maildrop )
|
|
MAY ( cn $ mailbox $ maildest $ mailaccess )
|
|
)
|
|
|
|
objectclass ( 1.3.6.1.4.1.15347.2.2
|
|
NAME 'mailGroup'
|
|
DESC 'E-Mail Group'
|
|
SUP top
|
|
STRUCTURAL
|
|
MUST ( cn $ mail )
|
|
MAY ( mailRoutingAddress $ member $ description )
|
|
)
|
|
|
|
objectclass ( 1.3.6.1.4.1.15347.2.3
|
|
NAME 'transportTable'
|
|
DESC 'MTA Transport Table'
|
|
SUP top
|
|
STRUCTURAL
|
|
MUST ( cn $ transport )
|
|
)
|
|
|