<!--
   $FML: postfix.sgml,v 1.2 2005/07/23 01:57:39 fukachan Exp $
   $jaFML: postfix.sgml,v 1.3 2003/04/15 14:51:39 fukachan Exp $
-->

<sect1 id="install.postfix">
	<title>
	MTA Configuration (postfix)
	</title>

<para>
Please set up postfix properly before "makefml newml" can set up a ml.
</para>

<sect2>
	<title>
	Default Domain (Example: fml.org)
	</title>


<para>
Set up /etc/postfix/main.cf like this:
<screen>
[/etc/postfix/main.cf]

allow_mail_to_commands = alias,forward,include

alias_maps	=	hash:/etc/mail/aliases
			hash:/var/spool/ml/etc/mail/aliases

</screen>
</para>

<warning>
<para>
Please check that $mydestination contains the default domain (may be
$mydomain).
</para>
</warning>

</sect2>


<sect2>
	<title>
	Virtual Domain (Example: nuinui.net)
	</title>

<para>
You need to edit /etc/postfix/main.cf to set up $virtual_maps.
<screen>
[/etc/postfix/main.cf]

allow_mail_to_commands = alias,forward,include

alias_maps	=	hash:/etc/mail/aliases
			hash:/var/spool/ml/etc/mail/aliases
			hash:/var/spool/nuinui.net/etc/mail/aliases

virtual_maps	=	hash:/var/spool/nuinui.net/etc/postfix/virtual

[/usr/local/etc/fml/ml_home_prefix]

nuinui.net /var/spool/nuinui.net

</screen>
Both alias files and /var/spool/nuinui.net/etc/postfix/virtual are
updated by makefml automatically
where we suppose ml_home_prefix_maps defines
<screen>
nuinui.net /var/spool/nuinui.net
</screen>
relation.
</para>

<warning>

<para>
Postfix variable $mydestination should contain the default domain (may
be $mydomain) but not virtual domain. Pay attention that we assume we
use postfix style virtual domain. Please see postfix document for more
details.
</para>

<para>
When you begin to use a new virtual domain, you need to update both
$alias_maps and $virtual_maps in /etc/postfix/main.cf. Also, you have
to update /usr/local/etc/fml/ml_home_prefix by running "makefml
newdomain".
</para>

<para>
Recent postfix has $virtual_alias_maps and $virtual_maps variables.
But $virtual_alias_maps = $virtual_maps by default.
You can use either.
</para>

</warning>

</sect2>


</sect1>
