Page 1 of 1

Postfix meldung in warn log

Posted: 2004-12-06 18:11
by distanzcheck
Habe hiervon einige einträge in meiner Warn.log

Was hat das zu bedeuten bzw. wie bekommeich die wieder weg ?

Code: Select all

Dec  6 14:14:56 hxxx postfix/smtpd[5024]: warning: support for restriction "check_relay_domains" will be removed from Postfix; use "reject_unauth_destination" instead
Dec  6 09:08:36 hxxx postfix/smtpd[2086]: warning: support for restriction "check_relay_domains" will be removed from Postfix; use "reject_unauth_destination" instead
Dec  6 08:52:33 hxxx postfix/smtpd[1912]: warning: support for restriction "check_relay_domains" will be removed from Postfix; use "reject_unauth_destination" instead
Dirk

Re: Postfix meldung in warn log

Posted: 2004-12-06 19:05
by rondal
Nunja frei übersetzt bedeutet das schlichtweg das check_relay_domains obsolet ist und man reject_unauth_destination verwenden soll.

Oder besser gesagt reject_unauth_destination und permit_auth_destination.

...wer lesen kann...

Schau dir das manual an, da steht wie die beiden funktionieren. Viel Erfolg!

Re: Postfix meldung in warn log

Posted: 2004-12-07 12:50
by distanzcheck
wenn ich es richtig verstanden haben also in der main.cf

Code: Select all

smtpd_recipient_restrictions = permit_sasl_authenticated, permit_mynetworks, check_relay_domains
durch

Code: Select all

smtpd_recipient_restrictions = permit_sasl_authenticated, permit_mynetworks, reject_unauth_destination
ersetzen, richtig ?

Dirk