PDA

View Full Version : Postfix Errors?


bolinux
20th August 2005, 13:38
Why i get this errors?

Aug 20 01:31:15 advx postfix/trivial-rewrite[7276]: warning: database /etc/postfix/virtusertable.db is older than source file /etc/postfix/virtusertable
Aug 20 01:46:15 advx postfix/cleanup[8395]: warning: database /etc/postfix/virtusertable.db is older than source file /etc/postfix/virtusertable
Aug 20 01:46:15 advx postfix/trivial-rewrite[8396]: warning: database /etc/postfix/virtusertable.db is older than source file /etc/postfix/virtusertable

Aug 19 22:53:53 advx postfix/smtpd[10331]: warning: support for restriction "check_relay_domains" will be removed from Postfix; use "reject_unauth_destination" instead
Aug 19 23:35:59 advx postfix/smtpd[25160]: warning: support for restriction "check_relay_domains" will be removed from Postfix; use "reject_unauth_destination" instead
Aug 19 23:35:59 advx postfix/smtpd[25160]: warning: restriction `reject_unauth_destination' after `check_relay_domains' is ignored

and how to fix?

till
20th August 2005, 14:31
Why i get this errors?

Aug 20 01:31:15 advx postfix/trivial-rewrite[7276]: warning: database /etc/postfix/virtusertable.db is older than source file /etc/postfix/virtusertable
Aug 20 01:46:15 advx postfix/cleanup[8395]: warning: database /etc/postfix/virtusertable.db is older than source file /etc/postfix/virtusertable
Aug 20 01:46:15 advx postfix/trivial-rewrite[8396]: warning: database /etc/postfix/virtusertable.db is older than source file /etc/postfix/virtusertable

Aug 19 22:53:53 advx postfix/smtpd[10331]: warning: support for restriction "check_relay_domains" will be removed from Postfix; use "reject_unauth_destination" instead
Aug 19 23:35:59 advx postfix/smtpd[25160]: warning: support for restriction "check_relay_domains" will be removed from Postfix; use "reject_unauth_destination" instead
Aug 19 23:35:59 advx postfix/smtpd[25160]: warning: restriction `reject_unauth_destination' after `check_relay_domains' is ignored

and how to fix?

These are just warnings, its nothing serious.

bolinux
20th August 2005, 14:34
Okay, in the second warning i changed "check_relay_domains" to "reject_unauth_destination". hope thats no problem?

till
20th August 2005, 14:39
Okay, in the second warning i changed "check_relay_domains" to "reject_unauth_destination". hope thats no problem?

Yes, that should work, see also:

http://www.postfix.org/uce.html

falko
20th August 2005, 17:03
Aug 20 01:31:15 advx postfix/trivial-rewrite[7276]: warning: database /etc/postfix/virtusertable.db is older than source file /etc/postfix/virtusertable

Run postmap /etc/postfix/virtusertable to fix this.

Aug 19 23:35:59 advx postfix/smtpd[25160]: warning: support for restriction "check_relay_domains" will be removed from Postfix; use "reject_unauth_destination" instead

In /etc/postfix/main.cf, you have a line that begins with
smtpd_recipient_restrictions = In that line, replace check_relay_domains with reject_unauth_destination and restart Postfix.

bolinux
20th August 2005, 17:06
thx!

:d