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.

67 lines
2.1 KiB

  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Author: Nicolas Bessi
  5. # Copyright 2012 Camptocamp SA
  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': 'Server env config for mail + fetchmail',
  23. 'version': '0.1',
  24. 'category': 'Tools',
  25. 'description': """
  26. Extend mail and fetch mail with server environment module.
  27. In config files, sections outgoint_mail and incoming_mails are default values for all Outgoing Mail Servers and Fetchmail Servers.
  28. 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.
  29. Exemple of config file :
  30. [outgoing_mail]
  31. smtp_host = smtp.myserver.com
  32. smtp_port = 587
  33. smtp_user =
  34. smtp_pass =
  35. smtp_encryption = ssl
  36. [outgoing_mail.openerp_smtp_server1]
  37. smtp_user = openerp
  38. smtp_pass = openerp
  39. [incoming_mail.openerp_pop_mail1]
  40. server = mail.myserver.com
  41. port = 110
  42. type = pop
  43. is_ssl = 0
  44. attach = 0
  45. original = 0
  46. user = openerp@myserver.com
  47. password = openerp
  48. """,
  49. 'author': 'Camptocamp',
  50. 'license': 'AGPL-3',
  51. 'website': 'http://openerp.camptocamp.com',
  52. 'depends': ['mail', 'fetchmail', 'server_environment', 'server_environment_files', 'crm'],
  53. 'init_xml': [],
  54. 'update_xml': ['mail_view.xml'],
  55. 'demo_xml': [],
  56. 'installable': False,
  57. 'active': False,
  58. }
  59. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: