mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-02-13 21:00:03 +00:00
fix: align transport password escaping
Co-authored-by: DerLinkman <62480600+DerLinkman@users.noreply.github.com>
This commit is contained in:
@@ -291,7 +291,7 @@ function transport($_action, $_data = null) {
|
|||||||
':destination' => $insert_dest,
|
':destination' => $insert_dest,
|
||||||
':is_mx_based' => $is_mx_based,
|
':is_mx_based' => $is_mx_based,
|
||||||
':username' => $username,
|
':username' => $username,
|
||||||
':password' => str_replace(':', '\:', $password),
|
':password' => $password,
|
||||||
':active' => $active
|
':active' => $active
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user