diff --git a/mail_environment/__manifest__.py b/mail_environment/__manifest__.py index b72c008..02cec83 100644 --- a/mail_environment/__manifest__.py +++ b/mail_environment/__manifest__.py @@ -3,11 +3,11 @@ { "name": "Mail configuration with server_environment", - "version": "15.0.1.0.0", + "version": "16.0.1.0.0", "category": "Tools", "summary": "Configure mail servers with server_environment_files", "author": "Camptocamp, Odoo Community Association (OCA)", "license": "AGPL-3", "website": "https://github.com/OCA/server-env", - "depends": ["fetchmail", "server_environment"], + "depends": ["mail", "server_environment"], } diff --git a/setup/mail_environment/odoo/addons/mail_environment b/setup/mail_environment/odoo/addons/mail_environment new file mode 120000 index 0000000..d9f9261 --- /dev/null +++ b/setup/mail_environment/odoo/addons/mail_environment @@ -0,0 +1 @@ +../../../../mail_environment \ No newline at end of file diff --git a/setup/mail_environment/setup.py b/setup/mail_environment/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/mail_environment/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)