<HTML>
<HEAD>
<TITLE>Managing hostnames</TITLE>
</HEAD>
<BODY>
<FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:10.0px'>Hello list<BR>
<BR>
I&#8217;m trying to configure syslog-ng with multiple mail server sources.<BR>
<BR>
It works fine, but I want a little more :<BR>
<BR>
The two line below shows what&#8217;s happening :<BR>
<BR>
Dec &nbsp;5 12:30:37 auxey postfix/smtpd[16360]: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;- original log on the mail server<BR>
<BR>
Dec &nbsp;5 12:30:37 auxey/auxey postfix/smtpd[16360]: &nbsp;&nbsp;&lt;- log stored localy by syslog-ng &nbsp;shortname appeared twice separated by &#8220;/&#8221;<BR>
<BR>
Here&#8217;s my configuration :<BR>
<BR>
On auxey : /etc/syslog.conf<BR>
<BR>
mail.* &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;@syslogserver.mydomain.com:514<BR>
<BR>
On syslogserver.mydomain.com : /usr/local/etc/syslog-ng.conf<BR>
<BR>
options { create_dirs(yes); keep_hostname(no); };<BR>
<BR>
<BR>
source net { udp(); };<BR>
<BR>
destination d_auxey { file(&quot;/var/log/tracemail/auxey.log&quot;); };<BR>
destination d_hermes { file(&quot;/var/log/tracemail/hermes.log&quot;); };<BR>
<BR>
filter f_auxey { host(&quot;auxey&quot;); };<BR>
filter f_hermes { host(&quot;hermes&quot;); };<BR>
<BR>
log { source(net); filter(f_auxey); destination(d_auxey); };<BR>
log { source(net); filter(f_hermes); destination(d_hermes); };<BR>
<BR>
<BR>
I tried with keep_hostname(no); and keep_hostname(yes);and without the option with the same result<BR>
<BR>
<BR>
Any idea ?</SPAN></FONT>
</BODY>
</HTML>