You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2021/12/30 02:26:52 UTC

[incubator-ponymail-foal] branch master updated (1fdb282 -> 14da810)

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git.


    from 1fdb282  regen JS
     new 9e396e5  Use listid here as well
     new 14da810  Server version

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 server/endpoints/source.py | 2 +-
 server/server_version.py   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

[incubator-ponymail-foal] 01/02: Use listid here as well

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git

commit 9e396e5e49e817a808373ce60040b4c51e8ae1d2
Author: Sebb <se...@apache.org>
AuthorDate: Thu Dec 30 02:26:21 2021 +0000

    Use listid here as well
    
    When searching by message-id, must use listid for disambiguation
---
 server/endpoints/source.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/endpoints/source.py b/server/endpoints/source.py
index d99fdd9..ce25d68 100644
--- a/server/endpoints/source.py
+++ b/server/endpoints/source.py
@@ -32,7 +32,7 @@ async def process(
 
     # If not found via permalink, it might be message-id instead, so try that
     if email is None:
-        email = await plugins.messages.get_email(session, messageid=indata.get("id"))
+        email = await plugins.messages.get_email(session, messageid=indata.get("id"), listid=indata.get("list", ""))
 
     if email and isinstance(email, dict) and not email.get("deleted"):
         if plugins.aaa.can_access_email(session, email):

[incubator-ponymail-foal] 02/02: Server version

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git

commit 14da810e4ad4a81435dc0e4b920eed133186e332
Author: Sebb <se...@apache.org>
AuthorDate: Thu Dec 30 02:26:42 2021 +0000

    Server version
---
 server/server_version.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/server_version.py b/server/server_version.py
index f02363f..5955096 100644
--- a/server/server_version.py
+++ b/server/server_version.py
@@ -1,2 +1,2 @@
 # This file is generated by server/update_version.sh
-PONYMAIL_SERVER_VERSION = '5617329'
+PONYMAIL_SERVER_VERSION = '9e396e5'