__openerp__.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "VietERP Mailbox",
  4. 'summary': """
  5. Simple Odoo mailbox""",
  6. 'description': """
  7. 1. Main features:
  8. - Sending email from odoo
  9. - Receiving email from odoo
  10. - Composing email from odoo
  11. - Choosing template when composing email
  12. 2. Why choose this?
  13. - Quickly compose email by using template
  14. - Don't need to setup any email client on computer
  15. - Can access it from any where
  16. 3. Settings:
  17. - To receiving email, you should follow below:
  18. Step1:
  19. <img src="/vieterp_mailbox/static/description/step1.png"/>
  20. Step2:
  21. <img src="/vieterp_mailbox/static/description/step2.png"/>
  22. Step3:
  23. <img src="/vieterp_mailbox/static/description/step3.png"/>
  24. 4. Support:
  25. For any feedback, please send email to info@vieterp.net
  26. """,
  27. 'author': "VietERP / Sang",
  28. 'website': "http://www.vieterp.net",
  29. # Categories can be used to filter modules in modules listing
  30. # Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml
  31. # for the full list
  32. 'category': 'Discuss',
  33. 'version': '1.2',
  34. # any module necessary for this one to work correctly
  35. 'depends': [
  36. 'base',
  37. 'mail',
  38. 'fetchmail',
  39. ],
  40. # always loaded
  41. 'data': [
  42. 'data/cron.xml',
  43. 'data/data.xml',
  44. 'security/record_rules.xml',
  45. 'security/ir.model.access.csv',
  46. 'views/mail_mail_views.xml',
  47. 'views/fetchmail_server_views.xml',
  48. 'views/mail_server_source_views.xml',
  49. ],
  50. # only loaded in demonstration mode
  51. 'demo': [
  52. ],
  53. 'images': [
  54. 'static/description/icon.png'
  55. ],
  56. 'installable': True,
  57. 'application': True,
  58. }