<div dir="ltr">This has finally fixed it! Emails are delivered to both mailboxes and no errors sent back to the sender or shown in log.<div><br></div><div>Seems that separating the alias line into a new file from the configuration options in <a href="http://virtual_alias_maps_manual.cf">virtual_alias_maps_manual.cf</a> what did the trick.<br><div><br></div><div>Andy, thanks a lot. </div><div><br></div><div>I've been pulling my hair all night in order to fix this. I am really very grateful. I would have never solved this myself.</div><div><br></div><div>Thanks again!</div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Nov 25, 2016 at 2:05 PM, Andy Kopciuch <span dir="ltr"><<a href="mailto:akopciuch@bddf.ca" target="_blank">akopciuch@bddf.ca</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Friday November 25 2016 12:10:46 Milan Petrovic wrote:<br>
> I was able to have the email delivered to the addr1@domain6 by changing the<br>
> alias line in <a href="http://virtual_alias_maps_manual.cf" rel="noreferrer" target="_blank">virtual_alias_maps_manual.cf</a> to:<br>
><br>
> addr1@domain6 = addr1@domain5<br>
><br>
> If I leave the "=" sign out, the mail log complains that:<br>
> fatal: /etc/postfix/<a href="http://virtual_alias_maps_manual.cf" rel="noreferrer" target="_blank">virtual_alias_<wbr>maps_manual.cf</a>, line 1-10: missing '='<br>
> after attribute name: "addr1@domain6 addr1@domain5"<br>
><br>
<br>
<br>
</span>The normal behavior for a file in virutal_alias_maps is to be an indexed file.<br>
I believe if you just specify a path, without a table type ... it just reads<br>
in the contents of the file as is (as part of the configuration).<br>
<br>
What you probably want is in <a href="http://main.cf" rel="noreferrer" target="_blank">main.cf</a>:<br>
<br>
virtual_alias_maps = hash:/etc/postfix/virtual,<br>
        ldap:/etc/postfix/ldap/<a href="http://virtual_alias_maps.cf" rel="noreferrer" target="_blank">virtual<wbr>_alias_maps.cf</a>,<br>
        <other lookup configurations><br>
<br>
Create the file /etc/postfix/virtual<br>
<br>
Contents :<br>
@<a href="http://domain6.com" rel="noreferrer" target="_blank">domain6.com</a> @<a href="http://domain5.com" rel="noreferrer" target="_blank">domain5.com</a><br>
<br>
Run this command after modifications :<br>
root@host # /usr/sbin/postmap /etc/postfix/virtual<br>
<br>
Which will create/update /etc/postfix/virtual.db<br>
<br>
<br>
Then run this to reload postfix :<br>
root@host # service postfix reload<br>
<br>
<br>
<br>
Andy<br>
______________________________<wbr>_________________<br>
users mailing list<br>
<a href="mailto:users@lists.kolab.org">users@lists.kolab.org</a><br>
<a href="https://lists.kolab.org/mailman/listinfo/users" rel="noreferrer" target="_blank">https://lists.kolab.org/<wbr>mailman/listinfo/users</a><br>
</blockquote></div><br></div>