mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
7a01793062
* Revert "Revert "markdown format"" * fix formating * fix readme * add .markdownlint.json * add markdownlint-rules-grav-pages * add markdownlint-rules-grav-pages files * add license for Markdown Lint Rules for Grav Pages * fix [figure] mess * fix [figure] mess 2 * fix [figure] mess 3 * maj .gitignore * various fixes * fix markdownlint-rules-grav-pages * second formater pass * various manual fixes * add .markdownlintignore * markdownlintignore: auto-generated pages * disable proper-names for html_elements * another bunch of various markdown fixes * Update pages/02.administer/10.install/20.dns_config/dns_config.es.md Co-authored-by: tituspijean <titus+yunohost@pijean.ovh> --------- Co-authored-by: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com> Co-authored-by: tituspijean <titus+yunohost@pijean.ovh>
53 lines
1.4 KiB
Markdown
53 lines
1.4 KiB
Markdown
---
|
||
title: Migrating email from an email provider to a YunoHost instance
|
||
template: docs
|
||
taxonomy:
|
||
category: docs
|
||
routes:
|
||
default: '/email_migration'
|
||
---
|
||
|
||
*[Documentation linked to YunoHost email](/email)*.
|
||
|
||
Migration of emails from one server to another can be done with two recommended tools: ImapSync or Larch.
|
||
|
||
This tool must be installed on your desktop computer. The transfer method looks at this schema:
|
||
|
||
**`Old email server −> desktop computer with ImapSync or Larch −> new email server`**
|
||
|
||
### ImapSync
|
||
|
||
[ImapSync site](http://imapsync.lamiral.info/)
|
||
|
||
Install ImapSync on your client computer by following this [guide](http://imapsync.lamiral.info/INSTALL):
|
||
|
||
```bash
|
||
sudo dnf install imapsync # Under Fedora
|
||
```
|
||
|
||
Transfer emails from one server to another:
|
||
|
||
```bash
|
||
imapsync --host1 <domain/IP> --port1 993 --ssl1 --user1 <user> --password1 <password> \
|
||
--host2 <domain/IP> --port2 993 --ssl2 --user2 <user> --password2 <password>
|
||
```
|
||
|
||
Note that transfer settings `--port 993` and `--ssl` are specific to YunoHost email server.
|
||
|
||
### Larch
|
||
|
||
[Larch site](https://github.com/rgrove/larch/)
|
||
|
||
After beforehand installed `gem`, install `larch` on your client computer:
|
||
|
||
```bash
|
||
sudo gem install larch
|
||
```
|
||
|
||
Transfer emails from one server to another:
|
||
|
||
```bash
|
||
larch -a -f imaps://serveur_d'origine.org -t imaps://serveur_de_destination.org
|
||
```
|
||
|
||
For other types of transfer refer to [Larch documentation](https://github.com/rgrove/larch#label-Usage).
|