
Что касается рекурсии, я просто отредактирую файл /etc/named.conf и добавлю следующую строку:
allow-recursion { localnets; }; Где нибудь в разделе
options { Должно выглядеть приблизительно так:
// generated by named-bootconf.pl
options {
directory "/var/named";
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
allow-transfer { none; };
allow-recursion { localnets; };
}; Перезапускаем named.
Для exim, редактируем файл /etc/exim.conf в секции log_selector.
Должно выглядеть вот так приблизительно:
log_selector = \ +arguments \ +subject \ +received_recipients \ +delivery_size \ +sender_on_delivery \ +received_sender \ +smtp_confirmation \ +smtp_incomplete_transaction \
После этого рестартуем exim.
Это все, удачи.




