You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.4 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Author Nicolas Bessi. Copyright Camptocamp SA
  5. ##############################################################################
  6. {
  7. 'name': 'Server env config for mail + fetchmail',
  8. 'version': '0.1',
  9. 'category': 'Tools',
  10. 'description': """
  11. Extend mail and fetch mail with server environment module.
  12. In config files, sections outgoint_mail and incoming_mails are default values for all Outgoing Mail Servers and Fetchmail Servers.
  13. For each server, you can (re)define values with a section named "outgoing_mail.resource_name" where resource_name is the name of your server.
  14. Exemple of config file :
  15. [outgoing_mail]
  16. smtp_host = smtp.myserver.com
  17. smtp_port = 587
  18. smtp_user =
  19. smtp_pass =
  20. smtp_encryption = ssl
  21. [outgoing_mail.openerp_smtp_server1]
  22. smtp_user = openerp
  23. smtp_pass = openerp
  24. [incoming_mail.openerp_pop_mail1]
  25. server = mail.myserver.com
  26. port = 110
  27. type = pop
  28. is_ssl = 0
  29. attach = 0
  30. original = 0
  31. user = openerp@myserver.com
  32. password = openerp
  33. """,
  34. 'author': 'Camptocamp',
  35. 'website': 'http://openerp.camptocamp.com',
  36. 'depends': ['mail', 'fetchmail', 'server_environment', 'server_environment_files', 'crm'],
  37. 'init_xml': [],
  38. 'update_xml': ['mail_view.xml'],
  39. 'demo_xml': [],
  40. 'installable': True,
  41. 'active': False,
  42. }
  43. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: