broth wrote:
If I want to remove it (empty field "Relay/Transport Setting") and click on save, I get following error:
Error: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') WHERE domain='xxxx.de'' at line 1")
I can reproduce this issue, it's a bug in iRedAdmin-Pro-MySQL-1.8.1. You can fix it with below steps:
*) Open file libs/mysql/domain.py, find below line (about line 480):
newTransport = settings.default_mta_transport,
*) Remove the ',' at the end of line:
newTransport = settings.default_mta_transport
*) Save your change and restart Apache service.
That's all.