I'm using syslog-ng 3.0.3 to collect and forward some messages to another syslog-ng 3.0.3 server. The messages are in the following format and are received via UDP:<BR>&nbsp;<BR>Jul&nbsp; 7 11:26:53&nbsp;SERVERNAME [aaa][info] xmlfirewall(Testservices): trans(534491553)[request]: Policy(Testpolicy): Message allowed<BR><BR>I use the following destination configuration:<BR>&nbsp;&nbsp;&nbsp;&nbsp; destination&nbsp;testserver&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { udp("testserver" port(514)); };<BR>&nbsp;<BR>&nbsp;<BR>The messages arrive in this format:<BR>Jul&nbsp; 7 11:26:53&nbsp;SERVERNAME [info] xmlfirewall(Testservices): trans(534491553)[request]: Policy(Testpolicy): Message allowed<BR><BR>&nbsp;<BR>It removed the [aaa] from the original message. I tried adding a template to the destination that used $MSG, but it didn't change the output. Is there a way to tell syslog-ng to not modify the original message? I don't recall having this issue with version 2.0.x.<BR>&nbsp;<BR>&nbsp;<BR>Thanks,<BR>&nbsp;<BR>Steve