-
Notifications
You must be signed in to change notification settings - Fork 2
/
__terp__.py
75 lines (69 loc) · 3.52 KB
/
__terp__.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
66
67
68
69
70
71
72
73
74
75
#########################################################################
#Power Email is a module for Open ERP which enables it to send mails #
#to customers, suppliers etc. and also has a fiull fledged email client.#
#########################################################################
# ##### # # # #### ### ### # # ## ### # #
# # # # # # # # # # # # # # # # # # #
# #### # # # # ### ### ### # # # # # # #
# # # # # # # # # # # # # #### # # #
# # # # # #### # # ### # # # # ### #### #
# 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" : "Powerful Email capabilities for Open ERP",
"version" : "23.9.1",
"author" : "Sharoon Thomas, Openlabs",
"website" : "http://openlabs.co.in/blog/post/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:
http://bugs.launchpad.net/poweremail/+filebug (or) https://bugs.launchpad.net/poweremail/+filebug
""",
"init_xml": ['poweremail_scheduler_data.xml'],
"demo_xml": [
'poweremail_demo.xml'
],
"update_xml": [
'security/poweremail_security.xml',
'poweremail_core_view.xml',
'wizard/wizard_poweremail_preview.xml',
'wizard/wizard_emails_generats.xml',
'wizard/wizard_state_poweremail.xml',
'wizard/wizard_send_email.xml',
'wizard/wizard_poweremail.xml',
'poweremail_workflow.xml',
'poweremail_template_view.xml',
'poweremail_send_wizard.xml',
'poweremail_mailbox_view.xml',
'poweremail_serveraction_view.xml',
'security/ir.model.access.csv',
'poweremail_mailbox_cronjobs.xml'
],
"installable": True,
"active": False,
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: