Hello, I&#39;m having problems trying to use the gmail example provided here: <a href="http://logback.qos.ch/manual/appenders.html">http://logback.qos.ch/manual/appenders.html</a><br><br>My config is:<br><br>...<br>    &lt;appender name=&quot;email&quot; class=&quot;ch.qos.logback.classic.net.SMTPAppender&quot;&gt;<br>
        &lt;SMTPHost&gt;<a href="http://smtp.gmail.com">smtp.gmail.com</a>&lt;/SMTPHost&gt;<br>        &lt;SMTPPort&gt;465&lt;/SMTPPort&gt;<br>        &lt;SSL&gt;true&lt;/SSL&gt;<br>        &lt;Username&gt;<a href="mailto:yyy@gmail.com">yyy@gmail.com</a>&lt;/Username&gt;<br>
        &lt;Password&gt;xxx&lt;/Password&gt;<br>        &lt;To&gt;<a href="mailto:zzz@gmail.com">zzz@gmail.com</a>&lt;/To&gt;<br>        &lt;From&gt;<a href="mailto:aaa@no-reply.com">aaa@no-reply.com</a>&lt;/From&gt;<br>        &lt;Subject&gt;APP ERROR: %class{20} - %m&lt;/Subject&gt;<br>
        &lt;!-- deny all events with a level below ERROR --&gt;<br>        &lt;filter class=&quot;ch.qos.logback.classic.filter.ThresholdFilter&quot;&gt;<br>          &lt;level&gt;ERROR&lt;/level&gt;<br>        &lt;/filter&gt;<br>
        &lt;layout class=&quot;ch.qos.logback.classic.PatternLayout&quot;&gt;<br>          &lt;pattern&gt;%d{HH:mm:ss.SSS} [%thread] %-5level %logger{1} - %msg%n&lt;/pattern&gt;<br>        &lt;/layout&gt;<br>    &lt;/appender&gt;<br>
...<br><br>... and I&#39;m getting this in the log:<br><br>19:41:03,031 |-ERROR in ch.qos.logback.core.joran.spi.Interpreter@38:16 - no applicable action for [SMTPPort], current pattern is [[configuration][appender][SMTPPort]]<br>
19:45:30,244 |-ERROR in ch.qos.logback.core.joran.spi.Interpreter@39:11 - no applicable action for [SSL], current pattern is [[configuration][appender][SSL]]<br>19:45:40,367 |-ERROR in ch.qos.logback.core.joran.spi.Interpreter@40:16 - no applicable action for [Username], current pattern is [[configuration][appender][Username]]<br>
19:45:40,740 |-ERROR in ch.qos.logback.core.joran.spi.Interpreter@41:16 - no applicable action for [Password], current pattern is [[configuration][appender][Password]]<br><br><br>Any suggestion on what could be wrong?<br>
Thanks,<br>Federico<br>