This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ===== C) Installation: servers ===== Postfix is your Mail Transfer Agent, which means that Postfix role is to actually send emails from one server to the other. Postfix is the server that will let you send an email, and also the server which will receive emails for you from other email servers. Dovecot instead, is the IMAP server, which will let you access your email, store it. ===== USE flags ===== You need to setup some specific USE flags before installing Postfix and Dovecot USE flags: <code bash> echo "*/* maildir dovecot" >> /etc/portage/package.use/mailserver echo "net-mail/dovecot managesieve sqlite lz4" >> /etc/portage/package.use/mailserver echo "mail-mta/postfix dovecot-sasl sqlite" >> /etc/portage/package.use/mailserver </code> This is needed to ensure that the storage format is //mailbox//, that we will need SQLite support and we want SASL authentication. ===== Installation ===== Emerge the servers: <code bash> emerge -vp postfix dovecot </code>