From 8b36442e309fe70848c771354d25e5dc026a4830 Mon Sep 17 00:00:00 2001 From: timo Date: Sat, 6 May 2017 14:12:29 +0200 Subject: [PATCH 1/5] Testing blocks --- docs/mc14_migrate.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/mc14_migrate.md b/docs/mc14_migrate.md index 7d044663d..35f3ba33a 100644 --- a/docs/mc14_migrate.md +++ b/docs/mc14_migrate.md @@ -1,5 +1,7 @@ -**WARNING** Please be adviced that this guide is a first draft. Mailcow: dockerized changed quite a lot on its DB configuration. It now uses the InnoDB file format `Barracuda` and the `utf8mb4` character set. There is also some change to the DB / TABLE structure. +!!! warning + Please be adviced that this guide is a first draft. Mailcow: dockerized changed quite a lot on its DB configuration. It now uses the InnoDB file format `Barracuda` and the `utf8mb4` character set. There is also some change to the DB / TABLE structure. +!!! info Also note that this guide doesn't touch on the users settings like *Spamlevels*, *TLS Settings*, etc. nor the export / import of your roundcube or SOGo settings. Lastly please check the section on how to [import / restore](backup_maildir/#restore) your maildir backup to get an idea how to migrate your mails. From fbfe4bcf1f91a1d8362854241ab72540cbe8ddb4 Mon Sep 17 00:00:00 2001 From: timo Date: Sat, 6 May 2017 14:13:20 +0200 Subject: [PATCH 2/5] Fixed Link --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 3d7c0733d..a8accaf30 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -15,7 +15,7 @@ pages: - 'Prerequisites': - 'Prepare Your System': 'requirements.md' - 'DNS Setup': 'dns.md' -- 'Migrating from mailcow 0.14': 'mc14_merge.md' +- 'Migrating from mailcow 0.14': 'mc14_migrate.md' - 'Installation & Update': - 'Installation': 'install.md' - 'Update': 'update.md' From 70fd59ec111aeac6ddd0081658c6fb6f0ad9acb5 Mon Sep 17 00:00:00 2001 From: timo Date: Sat, 6 May 2017 14:14:35 +0200 Subject: [PATCH 3/5] Formatting --- docs/mc14_migrate.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/mc14_migrate.md b/docs/mc14_migrate.md index 35f3ba33a..d53c395e3 100644 --- a/docs/mc14_migrate.md +++ b/docs/mc14_migrate.md @@ -1,10 +1,10 @@ !!! warning - Please be adviced that this guide is a first draft. Mailcow: dockerized changed quite a lot on its DB configuration. It now uses the InnoDB file format `Barracuda` and the `utf8mb4` character set. There is also some change to the DB / TABLE structure. + Please be adviced that this guide is a first draft. Mailcow: dockerized changed quite a lot on its DB configuration. It now uses the InnoDB file format `Barracuda` and the `utf8mb4` character set. There is also some change to the DB / TABLE structure. !!! info -Also note that this guide doesn't touch on the users settings like *Spamlevels*, *TLS Settings*, etc. nor the export / import of your roundcube or SOGo settings. + Also note that this guide doesn't touch on the users settings like *Spamlevels*, *TLS Settings*, etc. nor the export / import of your roundcube or SOGo settings. -Lastly please check the section on how to [import / restore](backup_maildir/#restore) your maildir backup to get an idea how to migrate your mails. + Lastly please check the section on how to [import / restore](backup_maildir/#restore) your maildir backup to get an idea how to migrate your mails. ## Create mailcow db backups From 1bd5906d51a91e1ec2668b9d0bdb86c2993bc0b3 Mon Sep 17 00:00:00 2001 From: timo Date: Sat, 6 May 2017 14:16:19 +0200 Subject: [PATCH 4/5] Formatting --- docs/mc14_migrate.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/mc14_migrate.md b/docs/mc14_migrate.md index d53c395e3..c3885e5f4 100644 --- a/docs/mc14_migrate.md +++ b/docs/mc14_migrate.md @@ -61,9 +61,10 @@ mysqldump --replace --no-create-info --default-character-set=utf8mb4 \ alias alias_domain domain domain_admins mailbox quota2 sender_acl > backup_mailcow.sql ``` -- **--replace**: Write `REPLACE` statements rather than `INSERT` statements -- **--no-create-info**: Don't write `CREATE TABLE` statements. -- **--default-character-set** make sure our exported default charset is *utf8mb4*. +!!! Info + **--replace**: Write `REPLACE` statements rather than `INSERT` statements + **--no-create-info**: Don't write `CREATE TABLE` statements. + **--default-character-set** make sure our exported default charset is *utf8mb4*. ## Prepare mailcow: dockerized From 28755c491667bd4e208dd874d30bdab4da4ccc57 Mon Sep 17 00:00:00 2001 From: timo Date: Sat, 6 May 2017 14:21:24 +0200 Subject: [PATCH 5/5] Formatting --- docs/mc14_migrate.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/mc14_migrate.md b/docs/mc14_migrate.md index c3885e5f4..2f65d5d83 100644 --- a/docs/mc14_migrate.md +++ b/docs/mc14_migrate.md @@ -63,7 +63,9 @@ mysqldump --replace --no-create-info --default-character-set=utf8mb4 \ !!! Info **--replace**: Write `REPLACE` statements rather than `INSERT` statements + **--no-create-info**: Don't write `CREATE TABLE` statements. + **--default-character-set** make sure our exported default charset is *utf8mb4*.