Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

help me understand this error message

Quote Reply
help me understand this error message
Why would I receive this when I know these accounts exist?

Hi,

This is the Discovery Mail program. Regarding your message entitled:

roses-- roses-- roses!! (-;

I'm afraid I wasn't able to deliver your message
to '<Undisclosed-Recipient:;>'. Reason: Could not find a user to deliver the message to.

The full headers are below.

Sorry it didn't work out!
-------------------------------------------------------------
Return-Path: <bsheinberg@gci.net>
Received: from mmp-1.gci.net ([208.138.130.80]) by camulod.flying-squirrel.org
with esmtp (Exim 3.36 #1) id 18imKt-0008AE-00; Tue, 11 Feb 2003
17:09:19 -0900
Received: from barbara (246-18-237-24.gci.net [24.237.18.246]) by mmp-1.gci.net
(iPlanet Messaging Server 5.2 HotFix 1.10 (built Jan 23 2003)) with
SMTP id <0HA600GH0B02F8@mmp-1.gci.net>; Tue, 11 Feb 2003 17:02:48 -0900
(AKST)
Date: Tue, 11 Feb 2003 17:02:26 -0900
From: Barbara Sheinberg <bsheinberg@gci.net>
From: 09:19 2003
Subject: roses-- roses-- roses!! (-;
To: <Undisclosed-Recipient:;>
Content-Type: multipart/alternative; boundary="Boundary_(ID_iSzmBDHqCpdm2uTpZ8eHdg)"
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
Message-Id: <01b501c2d23a$d0f9c080$6501a8c0@barbara>
Delivery-Date: Tue, 11 Feb 2003 17:09:19 -0900
Envelope-To: richard@discoverysoutheast.org, kathy@discoverysoutheast.org
Mime-Version: 1.0
X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000
X-Msmail-Priority: Normal
X-Priority: 3


.:SEAWEAD:.
Quote Reply
Re: [baidarkabob] help me understand this error message In reply to
Who's the email supposed to be delivered to? The discoverysoutheast.org addresses?

Adrian
Quote Reply
Re: [brewt] help me understand this error message In reply to
Adrian,

yes, the email was sent to two discoversoutheast.org addresses, both of which exist.

Bob


.:SEAWEAD:.
Quote Reply
Re: [baidarkabob] help me understand this error message In reply to
It's because Gossamer Mail isn't checking for the Envelope-To header (it does check for X-Envelope-To header), but you can add it to the list of headers to check. Edit incoming.pl, and go to around line 531 where it looks like this:
Code:
for ($head->get('X-GMail-To'), $head->get('X-Envelope-To'), $head->get('Delivered-To')) {
and change it to:
Code:
for ($head->get('X-GMail-To'), $head->get('X-Envelope-To'), $head->get('Delivered-To'), $head->get('Envelope-To')) {

Adrian
Quote Reply
Re: [brewt] help me understand this error message In reply to
Thanks Adrian, I will give that a try.

What does the sender do that precipitates the need for this change to the code?

Bob


.:SEAWEAD:.