2015-06-12 13:30:44 +02:00
# Email
2014-05-31 09:15:05 +02:00
2014-08-11 15:58:39 +02:00
YunoHost provides:
2014-05-31 09:15:05 +02:00
* [Postfix ](http://www.postfix.org/ ): a SMTP email server
* [Dovecot ](http://www.dovecot.org/ ): a IMAP and a POP3 email server
* [Amavis ](http://amavis.org/ ): an antispam
* [RoundCube ](/apps ): a webmail
2015-02-08 19:34:14 +01:00
### Desktop email client
2014-08-11 15:58:39 +02:00
You can access your emails via desktop email clients such as Mozilla Thunderbird or Evolution.
2014-05-31 09:15:05 +02:00
2014-08-11 15:58:39 +02:00
You will need your email address and your password.
2014-05-31 09:15:05 +02:00
2014-11-28 17:46:46 +01:00
**Caution:** your login is your SSO username and not your email address
2014-11-03 09:55:14 +01:00
2015-06-12 13:30:44 +02:00
##### Settings:
2014-05-31 09:15:05 +02:00
2014-07-23 17:05:42 +02:00
`IMAP | 993 | SSL/TLS`
2014-05-31 09:15:05 +02:00
2014-07-23 17:05:42 +02:00
`SMTP | 465 | SSL/TLS`
2014-06-15 18:50:57 +02:00
#### Mozilla Thunderbird
2015-02-08 19:35:33 +01:00
The automatic detection tool of Thunderbird does not work with YunoHost. You will need to set it up manually. To do so, add the account information, then select SSL/TLS for IMAP and SMTP. Afterwards select 'Normal Password' for Authentication and click on 'Advanced Config'. You will need to accept the certificate exceptions for fetching mails and after you send your first mail. Remove dot before domain name.
2014-05-31 09:15:05 +02:00
2014-11-28 17:46:46 +01:00
< img src = "https://yunohost.org/images/thunderbird-config.png" width = 900 >
2014-05-31 09:15:05 +02:00
2014-10-22 15:50:03 +02:00
* [Manage alias mails ](https://support.mozilla.org/en-US/kb/configuring-email-aliases )
2015-06-12 13:30:44 +02:00
#### For Android
2014-10-13 10:54:01 +02:00
[K-9 Mail ](https://en.wikipedia.org/wiki/K-9_Mail ) application works.
2014-08-11 15:58:39 +02:00
### Migration
2015-06-12 13:30:44 +02:00
Emails can be migrated with:
* [ImapSync ](http://imapsync.lamiral.info/ ):
2015-06-12 13:31:27 +02:00
* on your client [install ImapSync ](http://imapsync.lamiral.info/INSTALL ):
2015-06-12 13:30:44 +02:00
```bash
sudo dnf install imapsync # Under Fedora
```
* Proceed to the transfert between two YunoHost servers:
```bash
imapsync --host1 < domain / IP > --port1 993 --ssl1 --user1 < user > --password1 < password > \
--host2 < domain / IP > --port2 993 --ssl2 --user2 < user > --password2 < password >
```
* [Larch ](https://github.com/rgrove/larch/ ):
* on your client install Larch:
2015-01-10 22:56:11 +01:00
```bash
sudo gem install larch
```
2015-06-12 13:30:44 +02:00
* Proceed to the transfert between two YunoHost servers:
2015-01-10 22:56:11 +01:00
```bash
larch -a -f imaps://serveur_d'origine.org -t imaps://serveur_de_destination.org
```
For other type of tranfers refer you to Larch documentation.
2014-08-11 15:58:39 +02:00