final work for release of v3.17.1

This commit is contained in:
Rainer Gerhards 2008-04-15 15:19:53 +02:00
parent e82c6eec6f
commit 0e83bd69fc
7 changed files with 20 additions and 15 deletions

View File

@ -14,11 +14,13 @@ Version 3.17.1 (rgerhards), 2008-04-15
change looks quite unintrusive and so we added it to the parser.
- implemented klogd functionality for BSD
- implemented high precision timestamps for the kernel log. Thanks to
Michale Biebl for pointing out that the kernel log did not have them.
Michael Biebl for pointing out that the kernel log did not have them.
- provided ability to discard non-kernel messages if they are present
in the kernel log (seems to happen on BSD)
- implemented $KLogInternalMsgFacility config directive
- implemented $KLogPermitNonKernelFacility config directive
Plus a number of bugfixes that were applied to v3-stable and beta
branches (not mentioned here in detail).
---------------------------------------------------------------------------
Version 3.17.0 (rgerhards), 2008-04-08
- added native ability to send mail messages

View File

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT([rsyslog],[3.17.1-bsd],[rsyslog@lists.adiscon.com])
AC_INIT([rsyslog],[3.17.1],[rsyslog@lists.adiscon.com])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([syslogd.c])
AC_CONFIG_HEADERS([config.h])

View File

@ -33,7 +33,7 @@ html_files = \
imgssapi.html \
imrelp.html \
imuxsock.html \
imgklog.html \
imklog.html \
professional_support.html \
queues.html \
queueWorkerLogic.dia \

View File

@ -10,7 +10,9 @@
<p><b>Description</b>:</p>
<p>Provides the ability to receive syslog messages from the
network protected via Kerberos 5 encryption and authentication. This
module also accept plain tcp syslog messages on the same port if configured to do so. If you need just plain tcp, use&nbsp; <a href="imtcp.html">imtcp</a> instead.</p>
module also accept plain tcp syslog messages on the same port if configured to do so. If you need just plain tcp, use <a href="imtcp.html">imtcp</a> instead.</p>
<p>There is also an <a href="gssapi.html">overview of gssapi support in rsyslog</a> available. We recommend reading
it before digging into the configuration parameters.</p>
<p><b>Configuration Directives</b>:</p>
<ul>
<li>InputGSSServerRun &lt;port&gt;<br>
@ -47,4 +49,4 @@ Copyright
Gerhards</a> and
<a href="http://www.adiscon.com/">Adiscon</a>.
Released under the GNU GPL version 3 or higher.</font></p>
</body></html>
</body></html>

View File

@ -16,7 +16,7 @@ relay chains while at the same time being very easy to setup for the
novice user. And as we know what enterprise users really need, there is
also <a href="professional_support.html">professional
rsyslog support</a> available directly from the source!</p>
<p><b>This documentation is for version 3.15.1 (beta branch) of rsyslog.</b>
<p><b>This documentation is for version 3.17.1 (devel branch) of rsyslog.</b>
Visit the <i> <a href="http://www.rsyslog.com/doc-status.html">rsyslog status page</a></i></b> to obtain current
version information and project status.
</p><p><b>If you like rsyslog, you might
@ -63,7 +63,8 @@ php-syslog-ng with rsyslog</a></li>
<li><a href="rsyslog_recording_pri.html">recording
the syslog priority (severity and facility) to the log file</a></li>
<li><a href="http://www.rsyslog.com/Article19.phtml">preserving
syslog sender over NAT</a> (online only)</li><li><a href="gssapi.html">an overview and howto of rsyslog gssapi support</a></li>
syslog sender over NAT</a> (online only)</li>
<li><a href="gssapi.html">an overview and howto of rsyslog gssapi support</a></li>
<li><a href="debug.html">debug support in rsyslog</a></li>
<li><a href="dev_queue.html">the rsyslog message queue object</a></li>
</ul>

View File

@ -2,16 +2,16 @@
<html><head><title>rsyslog status page</title></head>
<body>
<h2>rsyslog status page</h2>
<p>This page reflects the status as of 2008-04-09.</p>
<p>This page reflects the status as of 2008-04-15.</p>
<h2>Current Releases</h2>
<p><b>development:</b> 3.17.0 -
<a href="http://www.rsyslog.com/Article207.phtml">change log</a> -
<a href="http://www.rsyslog.com/Downloads-index-req-getit-lid-95.phtml">download</a>
<p><b>development:</b> 3.17.1 -
<a href="http://www.rsyslog.com/Article213.phtml">change log</a> -
<a href="http://www.rsyslog.com/Downloads-req-viewdownloaddetails-lid-98.phtml">download</a>
<br><b>beta:</b> 3.15.0 -
<a href="http://www.rsyslog.com/Article203.phtml">change log</a> -
<a href="http://www.rsyslog.com/Downloads-index-req-getit-lid-93.phtml">download</a></p>
<br><b>beta:</b> 3.15.1 -
<a href="http://www.rsyslog.com/Article210.phtml">change log</a> -
<a href="http://www.rsyslog.com/Downloads-req-viewdownloaddetails-lid-97.phtml">download</a></p>
<p><b>v3 stable:</b> 3.14.2 - <a href="http://www.rsyslog.com/Article209.phtml">change log</a> -
<a href="http://www.rsyslog.com/Downloads-req-viewdownloaddetails-lid-96.phtml">download</a>

View File

@ -95,7 +95,7 @@ enqMsg(uchar *msg, uchar* pszTag, int iFacility, int iSeverity)
MsgSetUxTradMsg(pMsg, (char*)msg);
MsgSetRawMsg(pMsg, (char*)msg);
MsgSetMSG(pMsg, (char*)msg);
MsgSetHOSTNAME(pMsg, LocalHostName);
MsgSetHOSTNAME(pMsg, (char*)LocalHostName);
MsgSetTAG(pMsg, (char*)pszTag);
pMsg->iFacility = LOG_FAC(iFacility);
pMsg->iSeverity = LOG_PRI(iSeverity);