Browse Source

[MIG] fetchmail_notify_error_to_sender: Migration to 11.0

pull/1485/head
HaiDD 6 years ago
committed by mreficent
parent
commit
0e6322b386
  1. 3
      fetchmail_notify_error_to_sender/README.rst
  2. 3
      fetchmail_notify_error_to_sender/__init__.py
  3. 7
      fetchmail_notify_error_to_sender/__manifest__.py
  4. 2
      fetchmail_notify_error_to_sender/models/__init__.py
  5. 4
      fetchmail_notify_error_to_sender/models/fetchmail.py
  6. 2
      fetchmail_notify_error_to_sender/models/mail_thread.py

3
fetchmail_notify_error_to_sender/README.rst

@ -35,7 +35,7 @@ Usage
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/149/9.0
:target: https://runbot.odoo-community.org/runbot/149/11.0
Bug Tracker
===========
@ -58,6 +58,7 @@ Contributors
* Lorenzo Battistini <lorenzo.battistini@agilebg.com>
* Miquel Raïch <miquel.raich@eficent.com> (migration to v9 and v10)
* Hai Dinh <haidd.uit@gmail.com> (migration to V11)
Maintainer
----------

3
fetchmail_notify_error_to_sender/__init__.py

@ -1,6 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015 Lorenzo Battistini <lorenzo.battistini@agilebg.com>
# Copyright 2017 Eficent <http://www.eficent.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import models

7
fetchmail_notify_error_to_sender/__manifest__.py

@ -1,14 +1,15 @@
# -*- coding: utf-8 -*-
# Copyright 2015 Lorenzo Battistini <lorenzo.battistini@agilebg.com>
# Copyright 2017 Eficent <http://www.eficent.com>
# Copyright 2018 Hai Dinh <haidd.uit@gmail.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Fetchmail Notify Error to Sender',
'summary': 'If fetching mails gives error, send an email to sender',
'version': '10.0.1.0.0',
'version': '11.0.1.0.0',
'category': 'Tools',
'author': "Agile Business Group,Eficent,Odoo Community Association (OCA)",
'author':
"Agile Business Group,Eficent,Odoo Community Association (OCA)",
'website': 'https://github.com/OCA/server-tools',
'license': 'AGPL-3',
'depends': [

2
fetchmail_notify_error_to_sender/models/__init__.py

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Eficent <http://www.eficent.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import fetchmail

4
fetchmail_notify_error_to_sender/models/fetchmail.py

@ -1,14 +1,14 @@
# -*- coding: utf-8 -*-
# Copyright 2015 Lorenzo Battistini <lorenzo.battistini@agilebg.com>
# Copyright 2017 Eficent <http://www.eficent.com>
# Copyright 2018 Hai Dinh <haidd.uit@gmail.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class FetchmailServer(models.Model):
_inherit = 'fetchmail.server'
error_notice_template_id = fields.Many2one(
'mail.template', string="Error notice template",
help="Set here the template to use to send notice to sender when "

2
fetchmail_notify_error_to_sender/models/mail_thread.py

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2015-2017 Lorenzo Battistini <lorenzo.battistini@agilebg.com>
# Copyright 2017 Eficent <http://www.eficent.com>
# Copyright 2018 Hai Dinh <haidd.uit@gmail.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import api, models

Loading…
Cancel
Save