mirror of
https://github.com/rsyslog/rsyslog.git
synced 2026-05-29 20:48:33 +02:00
git-subtree-dir: doc git-subtree-mainline: 0d1c4ffdd28ddfd1ec13bfcd41597360ac077678 git-subtree-split: a001c0e188ee266a3face91efe0211fff5c07043
31 lines
719 B
ReStructuredText
31 lines
719 B
ReStructuredText
mmrm1stspace: First Space Modification Module
|
|
=============================================
|
|
|
|
**Author:** Pascal Withopf <pascalwithopf1@gmail.com>
|
|
|
|
In rfc3164 the msg begins at the first letter after the tag. It is often the
|
|
case that this is a unnecessary space. This module removes this first character
|
|
if it is a space.
|
|
|
|
Configuration Parameters
|
|
------------------------
|
|
|
|
Note: parameter names are case-insensitive.
|
|
|
|
Currently none.
|
|
|
|
Examples
|
|
--------
|
|
|
|
This example receives messages over imtcp and modifies them, before sending
|
|
them to a file.
|
|
|
|
::
|
|
|
|
module(load="imtcp")
|
|
module(load="mmrm1stspace")
|
|
input(type="imtcp" port="13514")
|
|
action(type="mmrm1stspace")
|
|
action(type="omfile" file="output.log")
|
|
|