<font size=2 face="sans-serif">Hi Frank,</font>
<br>
<br><font size=2 face="sans-serif">Someone must have used a so-called &quot;smart&quot;
editor to edit this file, since it seems to have used fancy quotes on the
console line.</font>
<br>
<br><font size=3>#destination console_all { file(&quot;/dev/tty12&quot;);
};<br>
destination console_all { file(“/dev/console”); };<br>
#destination loghost { udp(&quot;loghost&quot; port(999)); };<br>
</font>
<br><font size=2 face="sans-serif">Notice how they are different from those
on the line above? &nbsp;Word processors often replace quotes with matching
pairs like that automatically; only plain text editors should be used to
edit config files like this.</font>
<br>
<br><font size=2 face="sans-serif">Check for this kind of thing with a
hex dumper or 'cat -vet':</font>
<br>
<br><font size=2 face="sans-serif">$ cat frank</font>
<br><font size=2 face="sans-serif">#destination console_all { file(&quot;/dev/tty12&quot;);
};</font>
<br><font size=2 face="sans-serif">destination console_all { file(&quot;/dev/console&quot;);
};</font>
<br><font size=2 face="sans-serif">#destination loghost { udp(&quot;loghost&quot;
port(999)); };</font>
<br>
<br><font size=2 face="sans-serif">$ cat -vet frank</font>
<br><font size=2 face="sans-serif">#destination console_all { file(&quot;/dev/tty12&quot;);
};$</font>
<br><font size=2 face="sans-serif">destination console_all { file(M-bM-^@M-^\/dev/consoleM-bM-^@M-^]);
};$</font>
<br><font size=2 face="sans-serif">#destination loghost { udp(&quot;loghost&quot;
port(999)); };$</font>
<br>
<br><font size=2 face="sans-serif">Scott<br>
<br>
<br>
<br>
</font>