Browse Source

[RENAME] mail_log_message_to_process -> fetchmail_incoming_log

pull/1607/head
hveficent 6 years ago
committed by mreficent
parent
commit
80e237d736
  1. 14
      fetchmail_incoming_log/README.rst
  2. 0
      fetchmail_incoming_log/__init__.py
  3. 2
      fetchmail_incoming_log/__manifest__.py
  4. 0
      fetchmail_incoming_log/i18n/ca.po
  5. 0
      fetchmail_incoming_log/i18n/de.po
  6. 0
      fetchmail_incoming_log/i18n/es.po
  7. 0
      fetchmail_incoming_log/i18n/fr.po
  8. 0
      fetchmail_incoming_log/i18n/it.po
  9. 0
      fetchmail_incoming_log/i18n/mail_log_message_to_process.pot
  10. 0
      fetchmail_incoming_log/i18n/pt_BR.po
  11. 0
      fetchmail_incoming_log/i18n/pt_PT.po
  12. 0
      fetchmail_incoming_log/i18n/sl.po
  13. 0
      fetchmail_incoming_log/i18n/tr.po
  14. 0
      fetchmail_incoming_log/models/__init__.py
  15. 0
      fetchmail_incoming_log/models/mail_thread.py
  16. 2
      fetchmail_incoming_log/readme/CONTRIBUTORS.rst
  17. 2
      fetchmail_incoming_log/readme/DESCRIPTION.rst
  18. 0
      fetchmail_incoming_log/static/description/icon.png
  19. 12
      fetchmail_incoming_log/static/description/index.html
  20. 1
      fetchmail_incoming_log/tests/__init__.py
  21. 4
      fetchmail_incoming_log/tests/test_fetchmail_incoming_log.py
  22. 2
      mail_log_message_to_process/readme/CONTRIBUTORS.rst
  23. 1
      mail_log_message_to_process/tests/__init__.py

14
mail_log_message_to_process/README.rst → fetchmail_incoming_log/README.rst

@ -1,6 +1,6 @@
===========================
Mail Log Message to Process
===========================
======================
Fetchmail Incoming Log
======================
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
@ -14,10 +14,10 @@ Mail Log Message to Process
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github
:target: https://github.com/OCA/server-tools/tree/11.0/mail_log_message_to_process
:target: https://github.com/OCA/server-tools/tree/11.0/fetchmail_incoming_log
:alt: OCA/server-tools
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/server-tools-11-0/server-tools-11-0-mail_log_message_to_process
:target: https://translation.odoo-community.org/projects/server-tools-11-0/server-tools-11-0-fetchmail_incoming_log
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/149/11.0
@ -44,7 +44,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20mail_log_message_to_process%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20fetchmail_incoming_log%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues.
@ -75,6 +75,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/11.0/mail_log_message_to_process>`_ project on GitHub.
This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/11.0/fetchmail_incoming_log>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

0
mail_log_message_to_process/__init__.py → fetchmail_incoming_log/__init__.py

2
mail_log_message_to_process/__manifest__.py → fetchmail_incoming_log/__manifest__.py

@ -2,7 +2,7 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
'name': 'Mail Log Message to Process',
'name': 'Fetchmail Incoming Log',
'version': '11.0.1.0.0',
'category': 'Tools',
'summary': 'Log all messages received, before they start to be processed.',

0
mail_log_message_to_process/i18n/ca.po → fetchmail_incoming_log/i18n/ca.po

0
mail_log_message_to_process/i18n/de.po → fetchmail_incoming_log/i18n/de.po

0
mail_log_message_to_process/i18n/es.po → fetchmail_incoming_log/i18n/es.po

0
mail_log_message_to_process/i18n/fr.po → fetchmail_incoming_log/i18n/fr.po

0
mail_log_message_to_process/i18n/it.po → fetchmail_incoming_log/i18n/it.po

0
mail_log_message_to_process/i18n/mail_log_message_to_process.pot → fetchmail_incoming_log/i18n/mail_log_message_to_process.pot

0
mail_log_message_to_process/i18n/pt_BR.po → fetchmail_incoming_log/i18n/pt_BR.po

0
mail_log_message_to_process/i18n/pt_PT.po → fetchmail_incoming_log/i18n/pt_PT.po

0
mail_log_message_to_process/i18n/sl.po → fetchmail_incoming_log/i18n/sl.po

0
mail_log_message_to_process/i18n/tr.po → fetchmail_incoming_log/i18n/tr.po

0
mail_log_message_to_process/models/__init__.py → fetchmail_incoming_log/models/__init__.py

0
mail_log_message_to_process/models/mail_thread.py → fetchmail_incoming_log/models/mail_thread.py

2
fetchmail_incoming_log/readme/CONTRIBUTORS.rst

@ -0,0 +1,2 @@
* Jordi Ballester <jordi.ballester@eficent.com>
* Héctor Villarreal <hector.villarreal@eficent.com>

2
mail_log_message_to_process/readme/DESCRIPTION.rst → fetchmail_incoming_log/readme/DESCRIPTION.rst

@ -4,4 +4,4 @@ that have been fetched from the mail server, before they start to be processed.
This allows for a better analysis of situations where emails are found to be
missing in Odoo. Can help to better resolve questions of the type 'Was it that
the email was never fetched, or a problem found when it was processed by
Odoo?'.
Odoo?'.

0
mail_log_message_to_process/static/description/icon.png → fetchmail_incoming_log/static/description/icon.png

Before

Width: 128  |  Height: 128  |  Size: 9.2 KiB

After

Width: 128  |  Height: 128  |  Size: 9.2 KiB

12
mail_log_message_to_process/static/description/index.html → fetchmail_incoming_log/static/description/index.html

@ -4,7 +4,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.12: http://docutils.sourceforge.net/" />
<title>Mail Log Message to Process</title>
<title>Fetchmail Incoming Log</title>
<style type="text/css">
/*
@ -338,14 +338,14 @@ ul.auto-toc {
</style>
</head>
<body>
<div class="document" id="mail-log-message-to-process">
<h1 class="title">Mail Log Message to Process</h1>
<div class="document" id="fetchmail-incoming-log">
<h1 class="title">Fetchmail Incoming Log</h1>
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/server-tools/tree/11.0/mail_log_message_to_process"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/server-tools-11-0/server-tools-11-0-mail_log_message_to_process"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/149/11.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/server-tools/tree/11.0/fetchmail_incoming_log"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/server-tools-11-0/server-tools-11-0-fetchmail_incoming_log"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/149/11.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
<p>This module allows to log into the server the basic information of emails
that have been fetched from the mail server, before they start to be processed.</p>
<p>This allows for a better analysis of situations where emails are found to be
@ -369,7 +369,7 @@ Odoo?’.</p>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-tools/issues">GitHub Issues</a>.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20mail_log_message_to_process%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20fetchmail_incoming_log%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p>
</div>
<div class="section" id="credits">
@ -394,7 +394,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/11.0/mail_log_message_to_process">OCA/server-tools</a> project on GitHub.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/11.0/fetchmail_incoming_log">OCA/server-tools</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div>
</div>

1
fetchmail_incoming_log/tests/__init__.py

@ -0,0 +1 @@
from . import test_fetchmail_incoming_log

4
mail_log_message_to_process/tests/test_mail_log_message_to_process.py → fetchmail_incoming_log/tests/test_fetchmail_incoming_log.py

@ -7,10 +7,10 @@ from odoo.addons.mail.tests.common import TestMail
from odoo.addons.mail.tests.test_mail_gateway import MAIL_TEMPLATE
class TestMailLogMessageToProcess(TestMail):
class TestFetchmailIncomingLog(TestMail):
def setUp(self):
super(TestMailLogMessageToProcess, self).setUp()
super(TestFetchmailIncomingLog, self).setUp()
self.fetchmail_server = self.env['fetchmail.server'].create({
'name': 'Test Fetchmail Server',

2
mail_log_message_to_process/readme/CONTRIBUTORS.rst

@ -1,2 +0,0 @@
* Jordi Ballester <jordi.ballester@eficent.com>
* Héctor Villarreal <hector.villarreal@eficent.com>

1
mail_log_message_to_process/tests/__init__.py

@ -1 +0,0 @@
from . import test_mail_log_message_to_process
Loading…
Cancel
Save