Linux/Mailserver: Difference between revisions

From Wiki
No edit summary
No edit summary
Line 19: Line 19:
* http://johnny.chadda.se/article/mail-server-howto-postfix-and-dovecot-with-mysql-and-tlsssl-postgrey-and-dspam/
* http://johnny.chadda.se/article/mail-server-howto-postfix-and-dovecot-with-mysql-and-tlsssl-postgrey-and-dspam/
* http://www.howtoforge.com/howto_spamassassin_clamav_procmail
* http://www.howtoforge.com/howto_spamassassin_clamav_procmail
* http://mein.homelinux.com/wiki/mailserver/mailserver
* (http://www.myslug.de/index.php?title=IMAP_Mail_Server)
* (http://www.myslug.de/index.php?title=IMAP_Mail_Server)


== postfix ==
<pre>
sudo apt-get install postfix libsasl2-modules mailutils
-> Internet mit Smarthost
-> SMTP-Relay-Server (ISP smtp server)
</pre>
/etc/postfix/main.cf
<pre>
mynetworks = 127.0.0.0/8, 192.168.111.0/24
mydestination = domainname.de, localhostname, localhost.localdomain, localhost
</pre>
== dovecot ==
<pre>
sudo apt-get install dovecot-common dovecot-imapd dovecot-pop3d
</pre>
/etc/postfix/main.cf
<pre>
smtp_sasl_auth_enable = yes
# noplaintext weglassen, wenn Passwörter im Klartext übertragen werden müssen:
smtp_sasl_security_options = noplaintext noanonymous
smtp_sasl_password_maps = hash:/etc/postfix/sasl_password
</pre>
== fetchmail ==
<pre>
sudo apt-get install fetchmail
</pre>
<pre>
</pre>
<pre>
</pre>
<pre>
</pre>
<pre>
</pre>
<pre>
</pre>
<pre>
</pre>
<pre>
</pre>
<pre>
</pre>
<pre>
</pre>




__NOTOC__
__NOTOC__

Revision as of 16:33, 13 March 2013