CONFIGURACIONES SERVIDOR DE CORREO

Conexión a mysql

mysql -u root -p

Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 22295 Server version: 5.5.47-0+deb7u1 (Debian) Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

Creación de nuevo correo electronico

INSERT INTO mailJCT.usuarios_virtuales(id, id_dominio, contrasena , correo)VALUES('51', '1', ENCRYPT('SOME_PASS', CONCAT('$6$', SUBSTRING(SHA(RAND()), -16))), 'cuenta@dominio.com.co');

Actualizar contraseña del usuario especificado

UPDATE `mailJCT`.`usuarios_virtuales` SET `contrasena` = 'NUEVACONTRASENA' WHERE `usuarios_virtuales`.`id` =3;

Configurar una dirección para reenvio de correo.

Se debe considerar que el correo no permanecera en el buzon de origen, este solo aparecera en el destino

INSERT INTO `mailJCT`.`alias_virtuales`(`id`, `id_dominio`, `origen`, `destino`)VALUES('1', '1', 'j.taborda@jctsoluciones.com.co', 'juan.taborda@jctsoluciones.com.co');

Herramientas para transferencias de correo y copias de seguridad de correos

http://imapsync.lamiral.info/#DOC_BASIC
http://imapsync.lamiral.info/
http://www.offlineimap.org/

Scroll al inicio