Skip to main content

A simple Django app to handle imap login.

Project description

=====
Multiimap
=====

Multiimap is a simple Django app to manage login via imap server.


Quick start
-----------

1. Add "multiimap" to your INSTALLED_APPS setting like this::

INSTALLED_APPS = [
...
'django_multiimap',
]


2. In project settings, add multiimap backend to the backend tuple::

AUTHENTICATION_BACKENDS = (
'django_multiimap.backend.Backend',
'django.contrib.auth.backends.ModelBackend',
)

3. In project settings, add an 'MULTIIMAP_SERVERS' dictionary like this::

MULTIIMAP_SERVERS = {
'domain': {'host': 'domain_address', 'group_name': 'the_group_name', 'superusers': ['address@email.com']},
'domain1': {'host': 'domain1_address', 'group_name': 'the_group_name1', 'superusers': []}
}

This module will create a group with a name like 'multiimap_group_%s' % domain where domain is the @domain.com in user email.
Users mail addresses in superuser list will be set as django superuser.

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-multiimap-0.1.tar.gz (9.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page