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/28 15:49:15 UTC

[incubator-ponymail-foal] branch master updated (74f25fb -> 8c5aa1c)

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 74f25fb  Bump version
     new 6efabb8  Does not make sense to default these
     new 8c5aa1c  Bump 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 | 5 ++---
 server/server_version.py | 2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)

[incubator-ponymail-foal] 01/02: Does not make sense to default these

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 6efabb87abf7bbc0572179ecedd18e09fd56b8be
Author: Sebb <se...@apache.org>
AuthorDate: Fri Jan 28 15:48:54 2022 +0000

    Does not make sense to default these
    
    Drop debug print
---
 server/endpoints/mgmt.py | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/server/endpoints/mgmt.py b/server/endpoints/mgmt.py
index 51d4a0d..7a4b143 100644
--- a/server/endpoints/mgmt.py
+++ b/server/endpoints/mgmt.py
@@ -132,11 +132,10 @@ async def process(
     # Editing an email in place
     elif action == "edit":
         new_from = indata.get("from")
-        print(new_from)
         new_subject = indata.get("subject")
-        new_list = indata.get("list", "")
+        new_list = indata.get("list")
         private = indata.get("private", "yes") == "yes" # Assume private unless notified otherwise
-        new_body = indata.get("body", "")
+        new_body = indata.get("body")
         attach_edit = indata.get("attachments", None)
 
         # Check for consistency so we don't pollute the database

[incubator-ponymail-foal] 02/02: Bump 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 8c5aa1c778930a37392ef6562f35566ceaad36af
Author: Sebb <se...@apache.org>
AuthorDate: Fri Jan 28 15:49:05 2022 +0000

    Bump 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 d7c8c33..65fa43d 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 = '8094261'
+PONYMAIL_SERVER_VERSION = '6efabb8'