Difference between revisions of "Mail server"

From PostgreSQL_wiki
Jump to: navigation, search
 
(Squirrelmail)
 
(16 intermediate revisions by 3 users 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://library.linode.com/email/postfix/courier-mysql-debian-5-lenny
  +
  +
/etc/courier/imapd.pem
  +
  +
= Installatie =
  +
<pre>
  +
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
  +
</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>
  +
Zie ook:
  +
* http://squirrelmail.org/wiki/SpeedWithUW
 
<hr>
 
<hr>
Terug naar: [[Uwork Infrastructuur]]
+
Terug naar: [[Webhuis Infrastructuur]]

Latest revision as of 14:39, 4 December 2014

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

/etc/courier/imapd.pem

Installatie

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

Main.

Courier

Apache Mysql

ldap authenticatie

Signing en encryption

virtual mailbox

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:

$allow_server_sort        = true;
$allow_server_sort = true;

Zie ook:


Terug naar: Webhuis Infrastructuur