-
Notifications
You must be signed in to change notification settings - Fork 20
/
__openerp__.py
65 lines (59 loc) · 2.53 KB
/
__openerp__.py
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
53
54
55
56
57
58
59
60
61
62
63
64
65
#########################################################################
# #
# Copyright (C) 2010-2011 Openlabs Technologies & Consulting (P) LTD #
# Copyright (C) 2009 Sharoon Thomas #
# #
#This program is free software: you can redistribute it and/or modify #
#it under the terms of the GNU General Public License as published by #
#the Free Software Foundation, either version 3 of the License, or #
#(at your option) any later version. #
# #
#This program is distributed in the hope that it will be useful, #
#but WITHOUT ANY WARRANTY; without even the implied warranty of #
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
#GNU General Public License for more details. #
# #
#You should have received a copy of the GNU General Public License #
#along with this program. If not, see <http://www.gnu.org/licenses/>. #
#########################################################################
{
"name" : "Poweremail",
"version" : "0.7",
"author" : "Sharoon Thomas, Openlabs",
"website" : "http://openlabs.co.in/article/poweremail",
"category" : "Added functionality",
"depends" : [
'base',
],
"description": """
Power Email - extends the most Power ful open source ERP with email
which powers the world today.
Features:
1. Multiple Email Accounts
2. Company & Personal Email accounts
3. Security (In Progress)
4. Email Folders (Inbox.Outbox.Drafts etc)
5. Sending of Mails via SMTP (SMTP SSL also supported)
6. Reception of Mails (IMAP & POP3) With SSL & Folders for IMAP supported
7. Simple one point Template designer which automatically updates system.
No extra config req.
8. Automatic Email feature on workflow stages
NOTE: This is a beta release. Please update bugs at:
https://github.com/openlabs/poweremail/issues/new
""",
"init_xml": [
'scheduler_data.xml'
],
"update_xml": [
'security/security.xml',
'security/ir.model.access.csv',
'workflow.xml',
'core_view.xml',
'template_view.xml',
'send_wizard.xml',
'mailbox_view.xml',
'serveraction_view.xml',
],
"installable": True,
"active": False,
}