909
contributi
(Creata pagina con '{{Template:Internet Service Provider con Wheezy}} =Introduzione= In questo caso abbiamo deciso di configurare Postfix: * con un backend Mysql per la gestione dei domini, alias e...') |
|||
Riga 72: | Riga 72: | ||
2 | 2 | kerstin@foobar.org | kerstin42@yahoo.com | 2 | 2 | kerstin@foobar.org | kerstin42@yahoo.com | ||
3 | 2 | kerstin@foobar.org | kerstin@mycompany.com | 3 | 2 | kerstin@foobar.org | kerstin@mycompany.com | ||
</pre> | |||
==Popolamento di Mysql== | |||
Per prima cosa creiamo e popoliamo in mysql le tre tabelle di cui sopra. | |||
<pre> | |||
# mysql -p mailserver | |||
mysql> INSERT INTO virtual_domains (id, name) VALUES (1, 'example.com'); | |||
exit | |||
</pre> | |||
<pre> | |||
mysql> | |||
INSERT INTO virtual_users (id, domain_id, email, password) | |||
VALUES (1, 1, 'john@example.com', MD5('summersun')); | |||
</pre> | |||
<pre> | |||
mysql> | |||
INSERT INTO virtual_aliases (id, domain_id, source, destination) | |||
VALUES (1, 1, 'john@example.com', 'john@example.com'), | |||
(2, 1, 'devnull@example.com', 'john@workaround.org'); | |||
</pre> | </pre> |
contributi