Linux/Mailserver: Difference between revisions

From Wiki
No edit summary
Line 1: Line 1:
== Setups ==
* [[Linux/Mailserver/Testing]]
* [[Linux/Mailserver/Postfix Satellite]]
* [[Linux/Mailserver/Small Office Smarthost]] (postfix+dovecot+fetchmail/virtualusers)
* [[Linux/Mailserver/Internet Site]]
== Mailserver HowTos ==
== Mailserver HowTos ==
* http://workaround.org/ispmail/squeeze/postfix-smtp-auth
* http://workaround.org/ispmail/squeeze/postfix-smtp-auth
Line 14: Line 20:
* (http://www.myslug.de/index.php?title=IMAP_Mail_Server)
* (http://www.myslug.de/index.php?title=IMAP_Mail_Server)


== Setups ==
 
* [[Linux/Mailserver/Testing]]
* [[Linux/Mailserver/Postfix Satellite]]
* [[Linux/Mailserver/Small Office Smarthost]] (postfix+dovecot+fetchmail/virtualusers)
* [[Linux/Mailserver/Internet Site]]


== postfix ==
== postfix ==

Revision as of 22:35, 11 March 2013

Setups

Mailserver HowTos


postfix

sudo apt-get install postfix libsasl2-modules mailutils

-> Internet mit Smarthost
-> SMTP-Relay-Server (ISP smtp server)

/etc/postfix/main.cf

mynetworks = 127.0.0.0/8, 192.168.111.0/24
mydestination = domainname.de, localhostname, localhost.localdomain, localhost


dovecot

sudo apt-get install dovecot-common dovecot-imapd dovecot-pop3d

/etc/postfix/main.cf

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


fetchmail

sudo apt-get install fetchmail