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/12 00:27:52 UTC

[incubator-ponymail-foal] branch master updated: list_raw is needed for AAA

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


The following commit(s) were added to refs/heads/master by this push:
     new 89151e6  list_raw is needed for AAA
89151e6 is described below

commit 89151e6167835b459c0aac3273edfedfb3bde34c
Author: Sebb <se...@apache.org>
AuthorDate: Sun Dec 12 00:27:43 2021 +0000

    list_raw is needed for AAA
---
 server/plugins/messages.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/server/plugins/messages.py b/server/plugins/messages.py
index 58f4c97..f6abcba 100644
--- a/server/plugins/messages.py
+++ b/server/plugins/messages.py
@@ -71,7 +71,8 @@ USED_UI_FIELDS = [
 # The body_short contents may replace the body contents, but it is not returned separately
 
 # must always fetch private and deleted
-MUST_HAVE = [ 'private', 'deleted']
+# list_raw is needed for authentication
+MUST_HAVE = [ 'private', 'deleted', 'list_raw']
 
 
 def trim_email(doc, external=False):