Ticket #9174

バウンスメールが戻らない
Open Date: 2006-10-13 21:50 Last Update: 2006-10-13 21:50

Reporter:
Owner:
(None)
Type:
Status:
Open
Component:
(None)
MileStone:
(None)
Priority:
5 - Medium
Severity:
5 - Medium
Resolution:
None
File:
None

Details

バウンスメールが戻らない
apache のユーザ宛に返送されている。
Return-Path が設定されていないのが原因のようだ。

下記のハックを有効にすると、戻るようになる。

class/mail/xoopsmultimailer.php
------
function XoopsMultiMailer(){

$this->Sender = $xoopsConfig['adminmail']; //TODO: This
line is added in OTX by Marijuana. We must verify.
------

Return-Path は下記で設定される。
Sender が設定されていないときは、 From で代用されるはず
だが、
それでは 返送されないようだ。

class/mail/phpmailer/class.phpmailer.php
-----
function CreateHeader() {

if($this->Sender == "")
$result .= $this->HeaderLine("Return-Path",
trim($this->From));
else
$result .= $this->HeaderLine("Return-Path",
trim($this->Sender));
-----

Ticket History (0/0 Histories)

Attachment File List

No attachments

Edit

You are not logged in. I you are not logged in, your comment will be treated as an anonymous post. » Login