mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-05 00:27:25 +00:00
Upstream is adding handling for utf8 domains by creating a domain alias @utf8 -> @idna. I'm deviating from this approach by setting multiple email address (idna and utf8) per user and alias where a domain contains non-ascii characters. The maildrop (mailbox) remains the same - all mail goes to the user's mailbox regardless of which email address was used. This is more in line with how other systems (eg. active directory), handle multiple email addresses for a single user. # Conflicts: # README.md # management/mailconfig.py # management/templates/index.html # setup/dns.sh # setup/mail-users.sh
24 lines
573 B
Plaintext
24 lines
573 B
Plaintext
#
|
|
# Auxiliary objectclass to add named properties to an entry
|
|
#
|
|
|
|
objectIdentifier MiabLDAPadmin MiabLDAProot:3
|
|
objectIdentifier MiabLDAPadminAttributeType MiabLDAPadmin:1
|
|
objectIdentifier MiabLDAPadminObjectClass MiabLDAPadmin:2
|
|
|
|
attributetype ( MiabLDAPadminAttributeType:1
|
|
DESC 'Named property'
|
|
NAME 'namedProperty'
|
|
EQUALITY caseIgnoreMatch
|
|
SUBSTR caseIgnoreSubstringsMatch
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
|
|
)
|
|
|
|
objectClass ( MiabLDAPadminObjectClass:1
|
|
NAME 'namedProperties'
|
|
DESC 'Entry contains named properties'
|
|
SUP top
|
|
AUXILIARY
|
|
MAY ( namedProperty )
|
|
)
|