<br>It doesn&#39;t like this synxtax either:<br><br>destination r_smtp     { program (&quot;/usr/local/sbin/syslog-ng-mailer.sh&quot; template(&quot;$HOST &lt;$PRI&gt;$DATE $HOST $MSG\n&quot;); ); };<br><br>I can&#39;t get any syntax as all working that uses the template() option.<br>
<br>-Chuck<br><br><div class="gmail_quote">On Fri, Nov 5, 2010 at 6:57 AM, Sandor Geller <span dir="ltr">&lt;<a href="mailto:Sandor.Geller@morganstanley.com">Sandor.Geller@morganstanley.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Hi,<br>
<div class="im"><br>
On Fri, Nov 5, 2010 at 2:46 PM, Chuck &lt;<a href="mailto:chuck.carson@gmail.com">chuck.carson@gmail.com</a>&gt; wrote:<br>
&gt;<br>
</div><div class="im">&gt; I am running 3.0.4 on a solaris 10 host. I am trying to send critical and<br>
&gt; emergency events via smtp. I have the following syntax:<br>
&gt;<br>
&gt; destination r_smtp     { program (&quot;/usr/local/sbin/syslog-ng-mailer.sh<br>
&gt; $HOST&quot; template(&quot;&lt;$PRI&gt;$DATE $HOST $MSG\n.\n&quot;); ); };<br>
<br>
</div>Maybe you misunderstood the example.<br>
<div class="im"><br>
program (&quot;/usr/local/sbin/syslog-ng-mailer.sh $HOST&quot;<br>
<br>
</div>is bad, the whole string including the space and $HOST is treated as<br>
the program name... Instead of that use<br>
<br>
program (&quot;/usr/local/sbin/syslog-ng-mailer.sh&quot; template(...<br>
<br>
hth,<br>
<font color="#888888"><br>
Sandor<br>
</font></blockquote></div><br>