Mail server: Difference between revisions
Jump to navigation
Jump to search
| (11 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
= Mail server, met webmail en virtual hosts = |
= Mail server, met webmail en virtual hosts = |
||
== Opzet == |
|||
Op de server draaien verschillende deelprocessen die samen zorgen voor een comlete mailserver. |
|||
* Postfix |
|||
* Courier |
|||
* Apache |
|||
* Mysql |
|||
* Postfixadmin |
|||
* Squirrelmail |
|||
== Naslag == |
|||
* https://help.ubuntu.com/community/PostfixCompleteVirtualMailSystemHowto |
|||
* http://www.fatofthelan.com/articles/articles.php?pid=22 |
* http://www.fatofthelan.com/articles/articles.php?pid=22 |
||
* http://www.howtoforge.com/virtual_postfix_mysql_quota_courier |
* http://www.howtoforge.com/virtual_postfix_mysql_quota_courier |
||
* http://linux.justinhartman.com/Postfix_and_Courier_Installation_using_MySQL |
|||
* http://library.linode.com/email/postfix/courier-mysql-debian-5-lenny |
* http://library.linode.com/email/postfix/courier-mysql-debian-5-lenny |
||
| Line 12: | Line 22: | ||
courier-imap courier-imap-ssl postfix libsasl2-2 libsasl2-modules libsasl2-modules-sql sasl2-bin libpam-mysql openssl |
courier-imap courier-imap-ssl postfix libsasl2-2 libsasl2-modules libsasl2-modules-sql sasl2-bin libpam-mysql openssl |
||
apt-get install squirrelmail php-pear php5-ldap |
apt-get install squirrelmail php-pear php5-ldap |
||
wget http://squirrelmail.org/countdl.php?fileurl=http%3A%2F%2Fwww.squirrelmail.org%2Fplugins%2Fsmime-1.0-1.1.1.tar.gz |
|||
a2enmod ssl rewrite |
|||
/usr/sbin/squirrelmail-configure |
|||
</pre> |
|||
Het is een webmail server, dus zet de benodigde certificaten in een ssl directory. |
|||
= Postfix = |
|||
Main. |
|||
= Courier = |
|||
= Apache Mysql = |
|||
== ldap authenticatie == |
|||
== Signing en encryption == |
|||
== virtual mailbox == |
|||
* https://wiki.archlinux.org/index.php/Postfix#Step_1._Create_a_mysql_Database |
|||
== Squirrelmail == |
|||
Voorkom performance problemen en zet sorting in Squirrelmail uit. De gaat als volgt in: |
|||
* config.php |
|||
* config_default.php |
|||
In config.php en config_default.php: |
|||
<pre> |
|||
$allow_server_sort = true; |
|||
$allow_server_sort = true; |
|||
</pre> |
</pre> |
||
Zie ook: |
|||
* http://squirrelmail.org/wiki/SpeedWithUW |
|||
<hr> |
<hr> |
||
Terug naar: [[Webhuis Infrastructuur]] |
Terug naar: [[Webhuis Infrastructuur]] |
||
Latest revision as of 14:39, 4 December 2014
Mail server, met webmail en virtual hosts[edit]
Opzet[edit]
Op de server draaien verschillende deelprocessen die samen zorgen voor een comlete mailserver.
- Postfix
- Courier
- Apache
- Mysql
- Postfixadmin
- Squirrelmail
Naslag[edit]
- https://help.ubuntu.com/community/PostfixCompleteVirtualMailSystemHowto
- http://www.fatofthelan.com/articles/articles.php?pid=22
- http://www.howtoforge.com/virtual_postfix_mysql_quota_courier
- http://library.linode.com/email/postfix/courier-mysql-debian-5-lenny
/etc/courier/imapd.pem
Installatie[edit]
apt-get install postfix postfix-mysql postfix-doc mysql-client mysql-server courier-authdaemon courier-authlib-mysql
courier-imap courier-imap-ssl postfix libsasl2-2 libsasl2-modules libsasl2-modules-sql sasl2-bin libpam-mysql openssl
apt-get install squirrelmail php-pear php5-ldap
wget http://squirrelmail.org/countdl.php?fileurl=http%3A%2F%2Fwww.squirrelmail.org%2Fplugins%2Fsmime-1.0-1.1.1.tar.gz
a2enmod ssl rewrite
/usr/sbin/squirrelmail-configure
Het is een webmail server, dus zet de benodigde certificaten in een ssl directory.
Postfix[edit]
Main.
Courier[edit]
Apache Mysql[edit]
ldap authenticatie[edit]
Signing en encryption[edit]
virtual mailbox[edit]
Squirrelmail[edit]
Voorkom performance problemen en zet sorting in Squirrelmail uit. De gaat als volgt in:
- config.php
- config_default.php
In config.php en config_default.php:
$allow_server_sort = true; $allow_server_sort = true;
Zie ook:
Terug naar: Webhuis Infrastructuur