cron / ipop3 messages im syslog unterbinden?

Du kommst mit der Installation nicht voran oder willst noch was nachfragen? Schau auch in den "Tipps und Tricks"-Bereich.
Antworten
Belgarad
Beiträge: 749
Registriert: 12.07.2002 02:00:44

cron / ipop3 messages im syslog unterbinden?

Beitrag von Belgarad » 23.01.2004 20:29:00

obwohl ich im syslog.conf cron auf /var/log/cron.log umgeleitet habe, erscheinen die eintraege doch im syslog.
selbiges gilt fuer den ipop3 server.

weiss jemand warum ?

Code: Alles auswählen

#  /etc/syslog.conf     Configuration file for syslogd.
#
#                       For more information see syslog.conf(5)
#                       manpage.

#
# First some standard logfiles.  Log by facility.
#

auth,authpriv.*                 /var/log/auth.log
*.*;auth,authpriv.none          -/var/log/syslog
cron.*                          /var/log/cron.log
daemon.*                        -/var/log/daemon.log
kern.*                          -/var/log/kern.log
lpr.*                           -/var/log/lpr.log
mail.*                          -/var/log/mail.log
user.*                          -/var/log/user.log
uucp.*                          /var/log/uucp.log

#
# Logging for the mail system.  Split it up so that
# it is easy to write scripts to parse these files.
#
mail.info                       -/var/log/mail.info
mail.warn                       -/var/log/mail.warn
mail.err                        /var/log/mail.err

# Logging for INN news system
#
news.crit                       /var/log/news/news.crit
news.err                        /var/log/news/news.err
news.notice                     -/var/log/news/news.notice

#
# Some `catch-all' logfiles.
#
*.=debug;\
        auth,authpriv.none;\
        news.none;mail.none     -/var/log/debug
*.=info;*.=notice;*.=warn;\
        auth,authpriv.none;\
        cron,daemon.none;\
        mail,news.none          -/var/log/messages

#
# Emergencies are sent to everybody logged in.
#
*.emerg                         *

#
# I like to have messages displayed on the console, but only on a virtual
# console I usually leave idle.
#
#daemon,mail.*;\
#       news.=crit;news.=err;news.=notice;\
#       *.=debug;*.=info;\
#       *.=notice;*.=warn       /dev/tty8

# The named pipe /dev/xconsole is for the `xconsole' utility.  To use it,
# you must invoke `xconsole' with the `-file' option:
#
#    $ xconsole -file /dev/xconsole [...]
#
# NOTE: adjust the list below, or you'll go crazy if you have a reasonably
#      busy site..
#
daemon.*;mail.*;\
        news.crit;news.err;news.notice;\
        *.=debug;*.=info;\
        *.=notice;*.=warn       |/dev/xconsole


# um die meldungen von postfix im zaum zu halten
*.*;mail.!=info;daemon.!=info;mail.!=debug    /dev/tty12
mail.info;daemon.info      /dev/tty11

und im syslog:

Code: Alles auswählen

23 10:20:01 sonne /USR/SBIN/CRON[14625]: (root) CMD (test -x /usr/bin/getmail && test -f /etc/getmailrc && /usr/bin/getmail -g /etc -r getmailrc)
Jan 23 16:08:51 sonne ipop3d[26667]: connect from 192.168.1.201
Debian SID

Benutzeravatar
blackm
Moderator und Co-Admin
Beiträge: 5921
Registriert: 02.06.2002 15:03:17
Lizenz eigener Beiträge: MIT Lizenz

Beitrag von blackm » 24.01.2004 11:51:07

Moin,

das passiert noch wegen folgender Zeile:

Code: Alles auswählen

*.*;auth,authpriv.none          -/var/log/syslog
Da wird alles ( *.* ) erstmal nach /var/log/syslog umgeleitet. In der Zeile musst du noch schreiben, das cron und mail facilitys nicht in die Datei umgeleitet werden sollen, etwa so

Code: Alles auswählen

*.*;mail.!*;cron.!*;auth,authpriv.none          -/var/log/syslog
by, Martin
Schöne Grüße

Martin

Neu im Forum? --> https://wiki.debianforum.de/debianforum ... tensregeln
Log- und Konfigurationsdatein? --> pastebin.php
Forum unterstützen? --> https://wiki.debianforum.de/debianforum.de/Spenden

Belgarad
Beiträge: 749
Registriert: 12.07.2002 02:00:44

Beitrag von Belgarad » 25.01.2004 16:40:26

Danke :-)
Debian SID

Antworten