diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-12-12 21:57:36 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-12-12 21:57:36 +0100 |
commit | 05ab3587556d53973ac67a1d0064241d8623b447 (patch) | |
tree | 34f90a775d5d384f591d283e5ad143fe058d6d94 | |
parent | f603da207df24207be8cbb734778ff9e11ec479a (diff) | |
download | exilog-05ab3587556d53973ac67a1d0064241d8623b447.zip exilog-05ab3587556d53973ac67a1d0064241d8623b447.tar.gz exilog-05ab3587556d53973ac67a1d0064241d8623b447.tar.bz2 |
* make paths for log and pidfile to look more like for Debian distris.
* look out for the exim logfile in /var/log/exim4/mainlog.
* Exim4 on Debian uses /var/spool/exim4 as spool directory
resolves #124
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
-rw-r--r-- | conf/exilog.conf-example | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/conf/exilog.conf-example b/conf/exilog.conf-example index 53707fc..dd5f8ba 100644 --- a/conf/exilog.conf-example +++ b/conf/exilog.conf-example @@ -58,12 +58,12 @@ # The agent writes a log file. You can also # use /dev/null here once things are running # smoothly. - 'log' => '/var/log/exilog_agent', + 'log' => '/var/log/exilog.log', # The agent writes its PID into this file. Useful, # if you want to start the agent using a command # like start-stop-daemon. - 'pidfile' => '/var/run/exilog-agent.pid', + 'pidfile' => '/var/run/exilog/agent.pid', # If this is set to 'no', the agent will NOT change # its process names to be more informative. This will @@ -82,11 +82,11 @@ # /var/log/mail). If you use Exim's own logging, # you should specify the mainlog and rejectlog here. 'logs' => [ - '/var/log/maillog' + '/var/log/exim4/mainlog' ], # Path to Exim's queue directory. - 'queue' => '/var/spool/exim', + 'queue' => '/var/spool/exim4', # Path to your Exim binary 'exim' => '/usr/sbin/exim', |