~therp-nl/therp-addons/7.0_lp1219418

« back to all changes in this revision

Viewing changes to fetchmail_inbox/__openerp__.py

  • Committer: Ronald Portier
  • Date: 2014-03-28 13:12:43 UTC
  • mfrom: (81.5.17 therp-addons-7.0)
  • Revision ID: ronald@therp.nl-20140328131243-d06yj7u2o9fhshrw
[MERGE] Merge upstream changes
    - resolve text conflict in fetchmail_invoice.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    This module copyright (C) 2014 Therp BV (<http://therp.nl>).
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
##############################################################################
 
21
{
 
22
    "name" : "Fetch mail into inbox",
 
23
    "version" : "1.0",
 
24
    "author" : "Therp BV",
 
25
    "complexity": "normal",
 
26
    "description": """
 
27
In some cases, you may not want to have OpenERP create objects directly
 
28
on mail arrival, but put them into an inbox for further (possibly manual)
 
29
processing.
 
30
 
 
31
This module provides the base for this workflow and elementary UI for
 
32
processing.
 
33
 
 
34
Usage
 
35
-----
 
36
 
 
37
Create a fetchmail configuration and use 'Fetchmail inbox' as object to be
 
38
created on mail arrival. Be sure to check Advanced/Keep original in order
 
39
not to lose data in the intermediate step via the inbox.
 
40
 
 
41
Mails fetched from this configuration end up in Email/Fetchmail Inbox,
 
42
where they can be reviewed and eventually used to create new objects or
 
43
attached to existing objects.
 
44
 
 
45
Further development
 
46
-------------------
 
47
 
 
48
This module deals with emails in a very generic way, which is good for
 
49
flexibility, but bad for usability. Fortunately, it was developed with
 
50
extensibility in mind so that it is very simple to write extension modules
 
51
to ease handling emails for specific models in a more user friendly manner.
 
52
 
 
53
In simple cases, if you want to force specifying objects of just one model,
 
54
you can put 'default_res_model': 'your.model' into the menu action's
 
55
context and you're done.
 
56
    """,
 
57
    "category" : "Dependency",
 
58
    "depends" : [
 
59
        'mail',
 
60
        'fetchmail',
 
61
    ],
 
62
    "data" : [
 
63
        "security/res_groups.xml",
 
64
        "wizard/fetchmail_inbox_create_wizard.xml",
 
65
        "wizard/fetchmail_inbox_attach_existing_wizard.xml",
 
66
        "view/mail_message.xml",
 
67
        "view/menu.xml",
 
68
        'security/ir.model.access.csv',
 
69
    ],
 
70
    "js": [
 
71
    ],
 
72
    "css": [
 
73
    ],
 
74
    "qweb": [
 
75
    ],
 
76
    "auto_install": False,
 
77
    "installable": True,
 
78
    "external_dependencies" : {
 
79
        'python' : [],
 
80
    },
 
81
}