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 2022/01/04 12:51:07 UTC

[incubator-ponymail-foal] branch master updated (5ac65b5 -> 1ea362f)

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 5ac65b5  Update version
     new 9875fce  Wrong name for list id parameter
     new 1ea362f  Update 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/email.py  | 2 +-
 server/endpoints/source.py | 2 +-
 server/endpoints/thread.py | 2 +-
 server/server_version.py   | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

[incubator-ponymail-foal] 01/02: Wrong name for list id parameter

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 9875fced979ade27f313d071795682d1d187a553
Author: Sebb <se...@apache.org>
AuthorDate: Tue Jan 4 12:50:30 2022 +0000

    Wrong name for list id parameter
    
    This fixes #204
---
 server/endpoints/email.py  | 2 +-
 server/endpoints/source.py | 2 +-
 server/endpoints/thread.py | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/server/endpoints/email.py b/server/endpoints/email.py
index affe4ca..410d5a7 100644
--- a/server/endpoints/email.py
+++ b/server/endpoints/email.py
@@ -33,7 +33,7 @@ async def process(
 ) -> typing.Union[dict, aiohttp.web.Response]:
 
     # Has a list id been provided?
-    listid = indata.get("list", "")
+    listid = indata.get("listid", "")
 
     # lookup by message id must always include a list id for disambiguation
     if listid:
diff --git a/server/endpoints/source.py b/server/endpoints/source.py
index 0b7e24e..f43c7e0 100644
--- a/server/endpoints/source.py
+++ b/server/endpoints/source.py
@@ -29,7 +29,7 @@ async def process(
 ) -> aiohttp.web.Response:
 
     # Has a list id been provided?
-    listid = indata.get("list", "")
+    listid = indata.get("listid", "")
 
     # lookup by message id must always include a list id for disambiguation
     if listid:
diff --git a/server/endpoints/thread.py b/server/endpoints/thread.py
index 6ee9fab..13adf9f 100644
--- a/server/endpoints/thread.py
+++ b/server/endpoints/thread.py
@@ -27,7 +27,7 @@ async def process(
     server: plugins.server.BaseServer, session: plugins.session.SessionObject, indata: dict,
 ) -> typing.Optional[dict]:
     mailid = indata.get("id", "")
-    listid = indata.get("list", "")
+    listid = indata.get("listid", "")
 
     # lookup by message id must always include a list id for disambiguation
     if listid:

[incubator-ponymail-foal] 02/02: Update 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 1ea362fc1f39030576acae579629b4f69f2dedd9
Author: Sebb <se...@apache.org>
AuthorDate: Tue Jan 4 12:50:54 2022 +0000

    Update 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 92266fb..1e136fb 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 = '7eb007a'
+PONYMAIL_SERVER_VERSION = '9875fce'