diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/fetchmail/__manifest__.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/fetchmail/__manifest__.py')
| -rw-r--r-- | addons/fetchmail/__manifest__.py | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/addons/fetchmail/__manifest__.py b/addons/fetchmail/__manifest__.py new file mode 100644 index 00000000..85eb1605 --- /dev/null +++ b/addons/fetchmail/__manifest__.py @@ -0,0 +1,48 @@ +#-*- coding:utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Email Gateway', + 'version': '1.0', + 'depends': ['mail'], + 'category': 'Hidden/Tools', + 'description': """ +Retrieve incoming email on POP/IMAP servers. +============================================ + +Enter the parameters of your POP/IMAP account(s), and any incoming emails on +these accounts will be automatically downloaded into your Odoo system. All +POP3/IMAP-compatible servers are supported, included those that require an +encrypted SSL/TLS connection. + +This can be used to easily create email-based workflows for many email-enabled Odoo documents, such as: +---------------------------------------------------------------------------------------------------------- + * CRM Leads/Opportunities + * CRM Claims + * Project Issues + * Project Tasks + * Human Resource Recruitments (Applicants) + +Just install the relevant application, and you can assign any of these document +types (Leads, Project Issues) to your incoming email accounts. New emails will +automatically spawn new documents of the chosen type, so it's a snap to create a +mailbox-to-Odoo integration. Even better: these documents directly act as mini +conversations synchronized by email. You can reply from within Odoo, and the +answers will automatically be collected when they come back, and attached to the +same *conversation* document. + +For more specific needs, you may also assign custom-defined actions +(technically: Server Actions) to be triggered for each incoming mail. + """, + 'data': [ + 'data/fetchmail_data.xml', + 'security/ir.model.access.csv', + 'views/fetchmail_views.xml', + 'views/mail_mail_views.xml', + 'views/res_config_settings_views.xml', + ], + 'demo': [], + 'installable': True, + 'auto_install': True, + 'license': 'LGPL-3', +} |
