Explorar el Código

Using explicit PLAIN-MD5 hashing prefix

merge-requests/1/merge
Christoph Haas hace 10 años
padre
commit
36469f9f30
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      roles/ispmail-database/files/test.sql

+ 1
- 1
roles/ispmail-database/files/test.sql Ver fichero

@@ -12,7 +12,7 @@ REPLACE INTO `mailserver`.`virtual_users` (
`email` `email`
) )
VALUES ( VALUES (
'1', '1', MD5( 'summersun' ) , 'john@example.org'
'1', '1', CONCAT('{PLAIN-MD5}', MD5( 'summersun' )) , 'john@example.org'
); );
REPLACE INTO `mailserver`.`virtual_aliases` ( REPLACE INTO `mailserver`.`virtual_aliases` (
`id`, `id`,


Cargando…
Cancelar
Guardar