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/29 17:58:00 UTC

[incubator-ponymail-foal] branch master updated (bf02a81 -> ea70722)

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 bf02a81  Bump server version
     new 9a4ceb7   mgmt.py fails to update forum when changing listid
     new ea70722  Bump 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/mgmt.py | 1 +
 server/server_version.py | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

[incubator-ponymail-foal] 02/02: Bump 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 ea707223d45325b17690e52ad54b5e7e74b7536a
Author: Sebb <se...@apache.org>
AuthorDate: Sat Jan 29 17:57:50 2022 +0000

    Bump 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 9498ad8..b0df0f9 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 = '83ef2c1'
+PONYMAIL_SERVER_VERSION = '9a4ceb7'

[incubator-ponymail-foal] 01/02: mgmt.py fails to update forum when changing listid

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 9a4ceb7b172e57f6231789447a0d3713c5d7dfe4
Author: Sebb <se...@apache.org>
AuthorDate: Sat Jan 29 17:57:38 2022 +0000

     mgmt.py fails to update forum when changing listid
    
     This fixes #223
---
 server/endpoints/mgmt.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/server/endpoints/mgmt.py b/server/endpoints/mgmt.py
index 3101600..9c663bc 100644
--- a/server/endpoints/mgmt.py
+++ b/server/endpoints/mgmt.py
@@ -174,6 +174,7 @@ async def process(
             origin_lid = email["list_raw"]
             email["list"] = lid
             email["list_raw"] = lid
+            email["forum"] = lid.strip("<>").replace(".", "@", 1)
             email["body"] = new_body
             email["body_short"] = new_body[:plugins.messages.SHORT_BODY_MAX_LEN+1]
             if attach_edit is not None:  # Only set if truly editing attachments...