|
|
|
|
|
|
Re: Posts sent to more than one mailing list [message #28497 is a reply to message #28494] |
Wed, 26 October 2005 22:05 |
BobB
Messages: 165 Registered: April 2005 Location: Tucson, AZ
Karma: 0
|
Senior Member |
|
|
Ilia wrote on Wed, 26 October 2005 16:25 | The forum only imports a message if there is no existing message carrying the same message identifier. I suspect that is what is preventing duplicate imports. You can disable this check inside maillist.php
|
The last time I edited maillist.php I ran into serious problems. I don't want to edit it without being absolutely certain I'm doing it right.
Is this check disabled in the following section, starting with line 285:
if (isset($this->headers['message-id'])) {
$this->msg_id = substr(trim($this->headers['message-id']), 1, -1);
} else if (isset($this->headers['x-qmail-scanner-message-id'])) {
$this->msg_id = substr(trim($this->headers['x-qmail-scanner-message-id']), 1, -1);
} else {
mlist_error_log("No message id", $this->raw_msg);
If so, what needs to be changed?
|
|
|
|
|
|
|