Linux/Mailserver: Difference between revisions

From Wiki
(Die Seite wurde neu angelegt: „== postfix == <pre> sudo apt-get install postfix libsasl2-modules mailutils -> Internet mit Smarthost -> SMTP-Relay-Server (ISP smtp server) </pre> /etc/post…“)
 
No edit summary
 
(38 intermediate revisions by the same user not shown)
Line 1: Line 1:
== postfix ==
== Setups ==
<pre>
* [[Linux/Mailserver/Testing]]
sudo apt-get install postfix libsasl2-modules mailutils
* [[Linux/Mailserver/Postfix Satellite]]
* [[Linux/Mailserver/Small Office Smarthost]] (postfix + dovecot + fetchmail/virtualusers)
* [[Linux/Mailserver/Internet Site]] (postfix + dovecot + flat file virtual users +opendkim + postgrey + spamassassin + spf)
* [[Linux/Mailserver/Fetchmail]] (fetch multiple IMAP accounts with IDLE)
* [[Linux/Mailserver/Postfix+Dovecot_1]]
* [[Linux/Mailserver/Fail2ban]]


-> Internet mit Smarthost
== Mailserver HowTos ==
-> SMTP-Relay-Server (ISP smtp server)
=== Postfix ===
</pre>
* https://appbead.com/blog/how-to-setup-mail-server-on-debian-8-jessie-with-postfix-dovecot-1.html
* https://thomas-leister.de/sicherer-mailserver-dovecot-postfix-virtuellen-benutzern-mysql-ubuntu-server-xenial/


/etc/postfix/main.cf
<pre>
mynetworks = 127.0.0.0/8, 192.168.111.0/24
mydestination = domainname.de, localhostname, localhost.localdomain, localhost
</pre>


* http://wiki2.dovecot.org/LDA/Postfix
* https://www.vultr.com/docs/simple-mailserver-postfix-dovecot-sieve-debian
* http://workaround.org/ispmail/squeeze/postfix-smtp-auth
* http://wiki.ubuntuusers.de/Postfix
* http://wiki.ubuntuusers.de/Postfix/Erweiterte_Konfiguration
* http://de.wikibooks.org/wiki/Postfix
* http://www.asconix.com/howtos/debian/postfix-dovecot-mailserver-debian-howto
* http://www.akadia.com/services/postfix_separate_mailboxes.html
* http://rimuhosting.com/support/settingupemail.jsp?mta=postfix
* http://www.myslug.de/index.php?title=Mailserver_auf_Debian_mit_Imap,_Smarthost_und_Filter
* http://www.postfix.org/VIRTUAL_README.html#local_vs_database
* http://wiki2.dovecot.org/HowTo/VirtualUserFlatFilesPostfix
* http://rimuhosting.com/support/settingupemail.jsp?mta=postfix&t=mta
* http://johnny.chadda.se/article/mail-server-howto-postfix-and-dovecot-with-mysql-and-tlsssl-postgrey-and-dspam/
* http://mein.homelinux.com/wiki/mailserver/mailserver
* http://www.howtoforge.com/the-perfect-spamsnake-ubuntu-jeos-12.04-lts-precise-pangolin
* http://www.admin-magazin.de/Das-Heft/2012/02/Eigener-Mailserver-mit-Postfix-und-Dovecot/(offset)/2


== dovecot ==
=== Spam ===
<pre>
* http://www.howtoforge.com/howto_spamassassin_clamav_procmail
sudo apt-get install dovecot-common dovecot-imapd dovecot-pop3d
** http://ailoo.net/2009/11/integrate-spamassassin-into-postfix-dovecot/
</pre>
** https://petermolnar.eu/linux-tech-coding/mail-server-for-a-vps-postfixdovecotspamassassinclamavpolicyd-weight/
** http://debianforum.de/forum/viewtopic.php?f=8&t=141351


/etc/postfix/main.cf
=== Sieve ===
<pre>
* http://support.tigertech.net/sieve
smtp_sasl_auth_enable = yes
* http://wiki2.dovecot.org/Pigeonhole/Sieve
# 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 ===
* http://www.tuxhausen.de/old-stuff/emails-abholen-mit-fetchmail/
* http://www.christophbrill.de/?q=node/8


== fetchmail ==
=== Other ===
<pre>
* (http://www.myslug.de/index.php?title=IMAP_Mail_Server)
sudo apt-get install fetchmail
</pre>


 
__NOTOC__
 
[[Category:Linux/Services]]
 
[[Category:Linux]]
 
<pre>
</pre>
 
<pre>
</pre>
 
<pre>
</pre>
 
<pre>
</pre>
 
<pre>
</pre>
 
<pre>
</pre>
 
<pre>
</pre>
 
<pre>
</pre>
 
<pre>
</pre>

Latest revision as of 13:56, 1 April 2017

Setups

Mailserver HowTos

Postfix


Spam

Sieve

Fetchmail

Other