~daniel-watkins-credativ/poweremail/fix-server-actions

« back to all changes in this revision

Viewing changes to __terp__.py

  • Committer: Sharoon Thomas
  • Date: 2009-07-21 04:22:40 UTC
  • Revision ID: sharoonthomas@teagarden.in-20090721042240-vtqe59agm3e6c9p1
[INIT] Initial Release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#########################################################################
 
2
#Power Email is a module for Open ERP which enables it to send mails    #
 
3
#to customers, suppliers etc. and also has a fiull fledged email client.#
 
4
#########################################################################
 
5
#   #####     #   #        # ####  ###     ###  #   #   ##  ###   #     #
 
6
#   #   #   #  #   #      #  #     #  #    #    # # #  #  #  #    #     #
 
7
#   ####    #   #   #    #   ###   ###     ###  #   #  #  #  #    #     #
 
8
#   #        # #    # # #    #     # #     #    #   #  ####  #    #     #
 
9
#   #         #     #  #     ####  #  #    ###  #   #  #  # ###   ####  #
 
10
# Copyright (C) 2009  Sharoon Thomas                                    #
 
11
#                                                                       #
 
12
#This program is free software: you can redistribute it and/or modify   #
 
13
#it under the terms of the GNU General Public License as published by   #
 
14
#the Free Software Foundation, either version 3 of the License, or      #
 
15
#(at your option) any later version.                                    #
 
16
#                                                                       #
 
17
#This program is distributed in the hope that it will be useful,        #
 
18
#but WITHOUT ANY WARRANTY; without even the implied warranty of         #
 
19
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          #
 
20
#GNU General Public License for more details.                           #
 
21
#                                                                       #
 
22
#You should have received a copy of the GNU General Public License      #
 
23
#along with this program.  If not, see <http://www.gnu.org/licenses/>.  #
 
24
#########################################################################
 
25
 
 
26
{
 
27
    "name" : "Powerful Email capabilities for Open ERP",
 
28
    "version" : "0.1.0",
 
29
    "author" : "Sharoon Thomas, TL-Pragmatic",
 
30
    "website" : "",
 
31
    "category" : "Added functionality",
 
32
    "depends" : ['base'],
 
33
    "description": """
 
34
    A module similar to the smtpclient and email_sale etc etc. But lot more powerful. Creates three user groups:1.Email Manager(obvious), 2.Email External(Send email to partners),3.Email Internal (mail to seniors etc). the module supports cc, bcc etc which the present smtp client does not. Most unique thing is you can create default settings for sale order, invoice, etc with default cc's,bcc's and default subject, report name and body. the subject, reportname and body takes placeholders which has over 12 functions eg. can get customer name with %(cust_name) etc etc.
 
35
        
 
36
    """,
 
37
    "update_xml": ['PowerEmailGroup_data.xml',"poweremail_wizard.xml",'power_email_view.xml','poweremail_sale.xml','poweremail_inv.xml','poweremail_workflow.xml','poweremail_voucher.xml',"poweremail_demo.xml", ],
 
38
    "demo_xml" : [],
 
39
    "installable": True,
 
40
    "active": False,
 
41
}
 
42
 
 
43
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: