Download
Magazine
Develop
Account
Download
Magazine
Develop
Login
Forgot Account/Password
Create Account
Language
Help
Language
Help
×
Login
Login Name
Password
×
Forgot Account/Password
Category:
Software
People
PersonalForge
Magazine
Wiki
Search
OSDN
>
Find Software
>
Internet
>
WWW/HTTP
>
Dynamic Content
>
XOOPS
>
Ticket List/Search
>
Ticket #9174
XOOPS
Description
Project Summary
Developer Dashboard
Web Page
Developers
Image Gallery
List of RSS Feeds
Activity
Statistics
History
Downloads
List of Releases
Stats
Source Code
Code Repository list
CVS
View Repository
Ticket
Ticket List
Milestone List
Type List
Component List
List of frequently used tickets/RSS
Submit New Ticket
Documents
Communication
Forums
List of Forums
Help (1)
Open Discussion (1)
Mailing Lists
list of ML
xoops-cvslog
News
Ticket #9174
Ticket List
Submit New Ticket
RSS
バウンスメールが戻らない
Open Date:
2006-10-13 21:50
Last Update:
2006-10-13 21:50
monitor
ON
OFF
Reporter:
ohwada
Owner:
(None)
Type:
Bugs
Status:
Open
Component:
(None)
MileStone:
(None)
Priority:
5 - Medium
Severity:
5 - Medium
Resolution:
None
File:
None
Details
Reply
バウンスメールが戻らない
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 (
0
)
Attachment File List
No attachments
Edit
Add Comment
You are not logged in.
I you are not logged in, your comment will be treated as an anonymous post. »
Login
Add Comment
Preview
Submit
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));
-----