A Django application to simplify mail account management.
Project description
MAccMan is a reusable django application to facilitate easy management of email accounts, mailboxes, and aliases. MAccMan is currently under heavy development and not suited for production use.
Support notes
Currently mailman is being tested and developed on PostgreSQL only. There are some specific code snippets that assume that PostgreSQL is used as a backend. This will change in the future.
Requirements
PostgreSQL 9.0 or later with pgcrypto activated for the desired database (tested with 9.5)
django-cryptofield (available via pip)
Quick start
Make sure you are using PostgreSQL 9.0 or later (tested with 9.5)
Add the mailman application to your projects INSTALLED_APPS setting like so:
INSTALLED_APPS = [ ..., 'maccman', ]
Run ./manage.py migrate to create the required models and views
Start the development server and connect to the admin interface. From there you can configure aliases, mailboxes, etc.
Configure your postfix and dovecot instances to use the following views:
postfix_alias (Contains alias to destination mappings)
postfix_domain (Contains all active domains)
postfix_mailbox (Contains all active mailboxes
dovecot_iterate (Contains all active users)
dovecot_password (Contains username to password mappings for all active users)
dovecot_user (Contains address to maildir mappings for all active users)
Dovecot
MAccMan employs the cryptographic functionalities built into PostgreSQL to secure the users passwords. Therefore, you need to let the databse verify the passwords. To this, you will need the following WHERE clause in your dovecot SQL statement:
WHERE user = '%u' AND password = crypt('%w', password);
This allows the database backend to verify the password and only returns as user when the passwords match. In addition to this WHERE clause, you will need to select the following fields:
... NULL AS password, 'Y' AS nopassword ...
For more information, please refer to the excellent dovecot documentation
License
MAccMan is published under the terms and coditions of the 3-Clause-BSD-License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django_maccman-0.1.2.tar.gz
.
File metadata
- Download URL: django_maccman-0.1.2.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e79ed98fa3926006696f35a42b775eb084c3f7521670ec7e7e35ccbb8f5a729b |
|
MD5 | bcf1886ac646b23f75b31bad6888719f |
|
BLAKE2b-256 | 46b1aaf3092e21835e44fd43539ce8912d25a9436d62e4bb4ce2aaba921bf64c |