diff --git a/ChangeLog.md b/ChangeLog.md index 998be64..3aee724 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -8,11 +8,18 @@ All relevant changes to the project are documented in this file. ----------------------- ### Changes -- `syslogd` now caps forwarded messages to 1024 bytes. This can be - adjusted using `-M size` or the config file setting `udp_size`. See - the documentation for more information and reasoning behind this +- `syslogd` by default now cap forwarded messages to 1024 bytes. This + can be adjusted using `-M size` or the config file setting `udp_size`. + See the documentation for more information and reasoning behind this - `syslogd` socket buffering has been reduced from 160 kiB to 80 kiB - Allow slashes in process names to support, e.g., `postfix/qmgr` +- Support for extended message filtering based on tag/ident, hostname, + or message property. This allows sorting of messages based on their + origin (program/remote) or content in any of the available message + fields: exact match, case-insensitive substring matching or extended + regular expression +- Support for remote logging to a multicast group, as well as acting as + a multicast group receiver of syslog messages, both IPv4 and IPv6 ### Fixes - `syslogd` now logs the hostname as the FQDN in RFC5424 output format diff --git a/configure.ac b/configure.ac index 812d494..5b3846d 100644 --- a/configure.ac +++ b/configure.ac @@ -25,7 +25,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. -AC_INIT([sysklogd], [2.7.0-beta1], +AC_INIT([sysklogd], [2.7.0-rc1], [https://github.com/troglobit/sysklogd/issues],, [https://github.com/troglobit/sysklogd]) AC_CONFIG_AUX_DIR(aux)