You've already forked Mailu
mirror of
https://github.com/Mailu/Mailu.git
synced 2025-08-10 22:31:47 +02:00
fix: PATCH /user will overwrite existing "forward_destination"
This commit is contained in:
@@ -242,8 +242,7 @@ class User(Resource):
|
|||||||
if 'forward_enabled' in data:
|
if 'forward_enabled' in data:
|
||||||
user_found.forward_enabled = data['forward_enabled']
|
user_found.forward_enabled = data['forward_enabled']
|
||||||
if 'forward_destination' in data and len(data['forward_destination']) > 0:
|
if 'forward_destination' in data and len(data['forward_destination']) > 0:
|
||||||
if len(data['forward_destination']) == 0:
|
user_found.forward_destination = data['forward_destination']
|
||||||
user_found.forward_destination = data['forward_destination']
|
|
||||||
if 'forward_keep' in data:
|
if 'forward_keep' in data:
|
||||||
user_found.forward_keep = data['forward_keep']
|
user_found.forward_keep = data['forward_keep']
|
||||||
if 'reply_enabled' in data:
|
if 'reply_enabled' in data:
|
||||||
|
Reference in New Issue
Block a user