-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__manifest__.py
More file actions
52 lines (49 loc) · 1.66 KB
/
__manifest__.py
File metadata and controls
52 lines (49 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Mail Server Manager',
'version': '19.0.7.0.0',
'category': 'Technical',
'summary': 'Manage email accounts on docker-mailserver from Odoo',
'description': """
Mail Server Manager - Professional Module
===========================================
This module allows you to manage email accounts on a docker-mailserver
directly from the Odoo interface.
Features:
----------------
* Automatic creation of mailboxes for Odoo users
* Dedicated interface for email account management
* One-click password reset
* Suspend/Activate accounts
* Synchronization with the mail server
* Individual SMTP/IMAP servers per user (Chatter integration)
* Full configuration in settings
* Complete operation logging
Architecture:
-------------
The module directly manipulates the postfix-accounts.cf file of the
docker-mailserver via a shared Docker volume.
""",
'author': 'KHALID SAHIH | Sudo System',
'website': 'https://sudosystem.com/',
'maintainer': 'khalid.sahih@sudosystem.com',
'depends': ['mail', 'base_setup'],
# Note: fetchmail is optional - install it for IMAP support
'data': [
'security/ir.model.access.csv',
'security/ir_rules.xml',
'data/ir_config_parameter.xml',
'wizards/password_wizard_views.xml',
'wizards/change_password_wizard_views.xml',
'views/mail_account_views.xml',
'views/res_users_views.xml',
'views/res_config_settings_views.xml',
],
'demo': [
'demo/demo_data.xml',
],
'installable': True,
'application': True,
'auto_install': False,
'license': 'LGPL-3',
}