Manual:$wgNoReplyAddress

This page is a translated version of the page Manual:$wgNoReplyAddress and the translation is 82% complete.
メールの設定: $wgNoReplyAddress
自動的に生成したメールの返信先アドレス。
導入されたバージョン:1.5.0
除去されたバージョン:使用中
許容される値:(メールアドレス)
既定値:下記参照

詳細

このアドレスは、自動的に生成したメールの Reply-To: ヘッダーに使用されます。 返信メールはすべてこのアドレスに届きます。 It needs to be a correctly formatted email address, but it doesn't need to be real in any way.

Despite the name of the setting, this doesn't have to be a "no-reply" type address; however if you set it to a valid address, a lot of rubbish will get sent there, such as vacation auto-replies.

自動的に生成したメッセージへの返信を受け取りたい場合は、$wgEmergencyContact と同じアドレスにすることもできます。例:

$wgNoReplyAddress = $wgEmergencyContact;

既定値

MediaWiki バージョン:
1.27
/**
 * Reply-To address for email notifications.
 *
 * Defaults to $wgPasswordSender.
 */
$wgNoReplyAddress = false;
MediaWiki バージョン:
1.5 – 1.26
/**
 * Dummy address which should be accepted during mail send action.
 * It might be necessary to adapt the address or to set it equal
 * to the $wgEmergencyContact address.
 */
$wgNoReplyAddress = 'reply@not.possible';