Где находятся логи от Postfix и Pure-ftpd?

Re: Где находятся логи от Postfix и Pure-ftpd

При условии нормально настроенного и работающего логера, логи postfix идут сюда -- /var/log/mail/*
а ftp -- /var/log/ftp/*

Если же вы не обременяли себя настройкой логгера, то :
man syslog-ng.conf #если вы пользуете syslog-ng
man metalog.conf #если metalog

Иначе по аналогии.. :)

Приведите

Приведите пожалуйста пример syslog-ng.conf для ведения логов pure-ftpd или postfix-а.

syslog-ng.conf

Пример для postfix'а :

options { 
        chain_hostnames(off); 
        sync(0); 
        stats(43200); 
};

source src  { unix-stream("/dev/log"); internal(); pipe("/proc/kmsg"); };
filter info { level(debug, info, notice); };
filter warn { level(warn); };
filter err  { level(error); };

### Mail ###
destination mailall    { file("/var/log/mail/all"); };
filter      f_mailall  { facility(mail); };
log                    { source(src); destination(mailall); filter(f_mailall); };

destination mailinfo   { file("/var/log/mail/info"); };
filter      f_mailinfo { facility(mail); };
log                    { source(src); destination(mailinfo); filter(f_mailinfo); filter(info); };

destination mailwarn   { file("/var/log/mail/warnings"); };
filter      f_mailwarn { facility(mail); };
log                    { source(src); destination(mailwarn); filter(f_mailwarn); filter(warn); };

destination mailerr    { file("/var/log/mail/errors"); };
filter      f_mailerr  { facility(mail); };
log                    { source(src); destination(mailerr); filter(f_mailerr); filter(err); };
############

### Other ###
destination mess       { file("/var/log/syslog/messages"); };
filter      f_mess     { level(info..warn); };
log                    { source(src); destination(mess); filter(f_mess); };

destination alert      { file("/var/log/syslog/alerts"); };
filter      f_alert    { level(alert); };
log                    { source(src); destination(alert); filter(f_alert); };

destination emerg      { file("/var/log/syslog/emerg"); };
filter      f_emerg    { level(emerg); };
log                    { source(src); destination(emerg); filter(f_emerg); };
############

С ftp, думаю, разберетесь... facility у него -- ftp

Большое

Большое спасибо! По больше бы таких ответов.

Настройки просмотра комментариев

Выберите нужный метод показа комментариев и нажмите "Сохранить установки".