summaryrefslogtreecommitdiffstats
path: root/syslogd.c
Commit message (Collapse)AuthorAgeFilesLines
* replaced system() calls with something more reasonable. Please note thatRainer Gerhards2007-07-201-53/+37
| | | | | this might break compatibility with some existing configuration files. We accept this in favour of the gained security.
* updated usage() - forgotten when changed -r optionRainer Gerhards2007-07-201-1/+1
|
* removed incompatibility to sysklogd in syslogd -r option parsingRainer Gerhards2007-07-201-2/+5
|
* added the capability to continue trying to write log files when the fileRainer Gerhards2007-07-201-0/+7
| | | | | system is full. Functionality based on patch by Martin Schulze to sysklogd package.
* fixed another memory leak on HUPing and on exiting rsyslogd again thanks toRainer Gerhards2007-07-191-3/+8
| | | | varmojfekoj for the patch
* moved message object into its own set of filesRainer Gerhards2007-07-191-1028/+31
|
* code cleanup (removed compiler warningsRainer Gerhards2007-07-181-134/+136
|
* fixed minimal memory leak on HUP (caused by templates) thanks toRainer Gerhards2007-07-181-1/+4
| | | | varmojfekoj for the patch
* applied cleanup patch by Peter VrabecRainer Gerhards2007-07-181-6/+4
|
* fixed bug that caused $AllowedSenders to handle IPv6 scopes incorrectly;Rainer Gerhards2007-07-181-2/+3
| | | | | also fixed but that could grabble $AllowedSender wildcards. Thanks to mildew@gmail.com for the patch
* cleaned up code. removed conditional construct where "fromHost" could notRainer Gerhards2007-07-171-8/+2
| | | | be NULL
* improved AllowedSender code and portability - thanks to mildew@gmail.comRainer Gerhards2007-07-171-1/+9
|
* added $FailOnChownFailure config parameterRainer Gerhards2007-07-171-12/+26
|
* added config directives: $FileOwner, $FileGroup, $DirOwner, $DirGroupRainer Gerhards2007-07-171-15/+126
|
* added $CreateDirs, $DebugPrintTemplateList, $ResetConfigVariablesRainer Gerhards2007-07-171-11/+36
| | | | directives
* added $DirCreateMode config directiveRainer Gerhards2007-07-171-2/+15
|
* basic support for creating directories with dynaFiles addedRainer Gerhards2007-07-171-1/+14
|
* cleaned up code in AddAllowedSender()Rainer Gerhards2007-07-171-107/+112
|
* dded $ControlCharacterEscapePrefix config parameterRainer Gerhards2007-07-171-1/+28
|
* added $EscapeControlCharactersOnReceive config parameterRainer Gerhards2007-07-171-32/+29
|
* added new option $DropMsgsWithMaliciousDnsPTRRecordsRainer Gerhards2007-07-161-2/+19
|
* fully integrated patch from mildew@gmail.comRainer Gerhards2007-07-161-144/+174
|
* applied patch by mildew@gmail.com to support IPv6 in $AllowedSendersRainer Gerhards2007-07-161-94/+360
|
* integrated patch by Michel Samia to provide regex support for the filterRainer Gerhards2007-07-161-0/+10
| | | | engine - many thanks!
* renamed $RepeatedLineReduction to $RepeatedMsgReductionRainer Gerhards2007-07-161-2/+2
|
* implemented $RepeatedLineReduction optionRainer Gerhards2007-07-151-3/+7
|
* added parsing code for $RepeatedLineReduction andRainer Gerhards2007-07-151-4/+73
| | | | | $EscapeControlCharacetersOnReceive config file options (but not yet actual feature code yet)
* removed no longer needed includeRainer Gerhards2007-07-131-3/+0
|
* shuffled more defintions; defined new type msg_t for struct msgRainer Gerhards2007-07-131-90/+76
|
* - removed some now-unused fields from struct filedRainer Gerhards2007-07-131-11/+11
| | | | | - move file size limit fields in struct field to the "right spot" (the file writing part of the union - f_un.f_file)
* begun to better modularize syslogd.c - this is an ongoing project; movedRainer Gerhards2007-07-131-294/+58
| | | | type definitions to a separate file
* dded the -x option to disable hostname dns reslution thanks to varmojfekojRainer Gerhards2007-07-131-11/+18
| | | | for the patch
* added new properties "syslogfacility-text" and "syslogseverity-text" thanksRainer Gerhards2007-07-121-1/+74
| | | | to varmojfekoj for the patch
* fixed a bug that caused rsyslogd to segfault when TCP listening wasRainer Gerhards2007-07-111-2/+1
| | | | disabled and it terminated
* removed SYSV preprocessor macro; replaced with autotools equivalentRainer Gerhards2007-07-111-32/+10
|
* taking advantage of new build system - in the process of removing SYSVRainer Gerhards2007-07-101-6/+3
|
* upgrading to autotools build system - thank Peter Vrabec for patches andRainer Gerhards2007-07-101-8/+8
| | | | the idea
* removed a testing aidRainer Gerhards2007-07-101-2/+1
|
* re-enabled the "last message repeated n times" featureRainer Gerhards2007-07-101-135/+251
|
* added system properties: $NOW, $YEAR, $MONTH, $DAY, $HOUR, $MINUTERainer Gerhards2007-07-101-2/+81
|
* removed duplicate (conditional) codeRainer Gerhards2007-07-091-4/+0
|
* fixed a bug that caused compilation without SYSLOG_INET to failRainer Gerhards2007-07-091-14/+27
|
* optimized memory layout in struct filed when compiled with MySQL supportRainer Gerhards2007-07-061-38/+39
|
* changed is...() functions with (int) cast for clean BSD compileRainer Gerhards2007-07-061-23/+23
|
* improved template processing for dynaFiles; templates are now only lookedRainer Gerhards2007-07-051-11/+14
| | | | up during initialization - speeds up processing
* fixed a bug that caused a dynaFile selector to stall when there was an openRainer Gerhards2007-07-051-17/+35
| | | | error with one file
* implemented a cache for selectors with dynamic file namesRainer Gerhards2007-07-051-46/+248
|
* cleaned up some issues with $FileCreateModeRainer Gerhards2007-07-041-9/+24
|
* checks for extra (unexpected) characters in system config file lines haveRainer Gerhards2007-07-041-2/+16
| | | | been added
* added $umask and $FileCreateMode config file directivesRainer Gerhards2007-07-041-29/+113
|