On Wed, Jun 23, 2010 at 13:55, Jerry <[email protected]> wrote:
> I use Dovecot for virtual transport also. I don't remember exactly why;
> however, I had to place this in the main.cf file:
>
> dovecot_destination_recipient_limit = 1
>
> By the way, your "smtpd_banner" may make you feel good, but like most
> disclaimers and oral contracts, it isn't worth the paper it is printed
> on. In fact, it almost sounds like a challenge.
Does "postconf -n | grep dovecot" show it for you? Does not for me.
I don't know why that is, but I suspect it is due to the fact that
this is a dynamically named transport variable. Maybe what postconf
is doing is iterating through its known list of variables and
displaying them in that order, and
${whateveryourtransportis}_destination_recipient_limit (and a few
others) are not really "known" in that context. I remember that
confused me in the past because I was literally looking for
"dovecot_*" stuff in the documentation and not finding it. Now I know
to literally use "transport" for the transport name to find
documentation.
================================================================
marconi/root/x0 /etc/postfix 132# postconf -n | grep dovecot
smtpd_sasl_path = private/dovecot-auth
smtpd_sasl_type = dovecot
virtual_transport = dovecot
marconi/root/x0 /etc/postfix 133# grep dovecot < main.cf
smtpd_sasl_type = dovecot
smtpd_sasl_path = private/dovecot-auth
virtual_transport = dovecot
dovecot_destination_recipient_limit = 1
marconi/root/x0 /etc/postfix 134#
================================================================