Lutuh
New Pleskian
TITLE:
Password is not enforced on mailbox creation if "Access to the Customer Panel" is unchecked
PRODUCT, VERSION, OPERATING SYSTEM, ARCHITECTURE:Plesk Onyx Version 17.5.3 Update #42
Ubuntu 16.04.3 LTS
PROBLEM DESCRIPTION:Ubuntu 16.04.3 LTS
Mailboxes can be created with an empty password if the checkbox "Access to the Customer Panel" is disabled.
This leads to the error "No such user in mail authorization database" in Postfix because the mailbox is not existing.
STEPS TO REPRODUCE:This leads to the error "No such user in mail authorization database" in Postfix because the mailbox is not existing.
- Click on "Create Email Address"
- Enter something into field "Email address"
- Uncheck "Access to the Customer Panel"
- Click on "OK"
ACTUAL RESULT:- Enter something into field "Email address"
- Uncheck "Access to the Customer Panel"
- Click on "OK"
mysql> select * from accounts where password='';
+----+-------+----------+
| id | type | password |
+----+-------+----------+
| 9 | plain | |
+----+-------+----------+
1 row in set (0.00 sec)
EXPECTED RESULT:+----+-------+----------+
| id | type | password |
+----+-------+----------+
| 9 | plain | |
+----+-------+----------+
1 row in set (0.00 sec)
mysql> select * from accounts where password='';
+----+-------+----------------------------+
| id | type | password |
+----+-------+----------------------------+
| 9 | plain | $AES-128-CBC$oEQyr[...] |
+----+-------+----------------------------+
1 row in set (0.00 sec)
ANY ADDITIONAL INFORMATION:+----+-------+----------------------------+
| id | type | password |
+----+-------+----------------------------+
| 9 | plain | $AES-128-CBC$oEQyr[...] |
+----+-------+----------------------------+
1 row in set (0.00 sec)
YOUR EXPECTATIONS FROM PLESK SERVICE TEAM:Confirm bug