gen pichong

Greenhorn
+ Follow
since Apr 28, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by gen pichong

Now I am sure that the problem is that the domain information is not provided in the email header. So I need to configure the sendmail to make it contain the domain name.

But I am a newbie to SendMail. Can anyone good a sendmail provide some help?

current email header:
=======================
From: abc@DOMAIN_NAME.com
To: aabbcc@hotmail.com
Subject: Test Email
Date: Thu, 26 May 2005 17:57:05 -0400
Received: from www.DOMAIN_NAME.com ([64.234.212.265]) by MC6-F18.hotmail.com with Microsoft SMTPSVC(6.0.3790.211); Thu, 26 May 2005 14:57:03 -0700
Received: from www.DOMAIN_NAME.com (localhost.localdomain [127.0.0.1])by www.DOMAIN_NAME.com (8.12.8/8.12.8) with ESMTP id j4QLv5Gr003323for <aabbcc@hotmail.com>; Thu, 26 May 2005 17:57:05 -0400
Received: (from nobody@localhost)by www.DOMAIN_NAME.com (8.12.8/8.12.8/Submit) id j4QLv5Gb003321;Thu, 26 May 2005 17:57:05 -0400
X-Message-Info: JGTYoYF78jGk2nU+0bYgKfUqOY8jR6Jf2j9UFL/SkBQ=
Return-Path: nobody@www.DOMAIN_NAME.com
X-OriginalArrivalTime: 26 May 2005 21:57:04.0186 (UTC) FILETIME=[DA1E19A0:01C5623D]
=======================

I want to Change to:
=======================
From: abc@DOMAIN_NAME.com
To: aabbcc@hotmail.com
Subject: Test Email
Date: Thu, 26 May 2005 17:57:05 -0400
Received: from www.DOMAIN_NAME.com ([64.234.212.265]) by MC6-F18.hotmail.com with Microsoft SMTPSVC(6.0.3790.211); Thu, 26 May 2005 14:57:03 -0700
Received: from www.DOMAIN_NAME.com (www.DOMAIN_NAME.com [64.234.212.265])by www.DOMAIN_NAME.com (8.12.8/8.12.8) with ESMTP id j4QLv5Gr003323for <aabbcc@hotmail.com>; Thu, 26 May 2005 17:57:05 -0400
Received: (from nobody@www.DOMAIN_NAME.com)by www.DOMAIN_NAME.com (8.12.8/8.12.8/Submit) id j4QLv5Gb003321;Thu, 26 May 2005 17:57:05 -0400
X-Message-Info: JGTYoYF78jGk2nU+0bYgKfUqOY8jR6Jf2j9UFL/SkBQ=
Return-Path: nobody@www.DOMAIN_NAME.com
X-OriginalArrivalTime: 26 May 2005 21:57:04.0186 (UTC) FILETIME=[DA1E19A0:01C5623D]
=======================

It is runing on a Redhat linux 9 server.

How I can configure sendmail to realize it. I am a newbie to sendmail. Please be as detail as possible.

Thanks
18 years ago
Thanks. I believe the email header is the problem now. I have checked the spammer black list. My ip is not there. I have check the bounced email. It says that a domain must be set.

Now, I am researching on how to set email headers.
[ May 26, 2005: Message edited by: gen pichong ]
18 years ago
It is the Java Mail API. I use the local SMTP server at port 25. It is sendmail running on RedHat Linux.

To be more specific. Using the exact same code, the email can be sent to genpichong@hotmail.com, genpichong@yahoo.com. But not genpichong@comcast.net.

The email listed above is just examples, not my real emails
18 years ago
I send emails out from the server based on the user input. The emails can be sent to email address with yahoo.com, hotmail.com, and many other domains. But not to email addresses with .comcast.net, .netzero.com domains. It is not even in the spam/junk email folder.

I try to send web based emails to my comcast.net account by registering on other websites. Such as "http://www.javaranch.com". It works. My comcast.net account can even receive spam from spamming software.

Anyone have idea of Why and How to solve? Thanks
18 years ago
The kind of 16x16 icon shown in the address bar in Firefox and show in the bookmark of Internet Explore. Thanks.
Session cookie can not be deleted. It sit in the memory, not in the file system. The session cookie will expire when you close the last browser window.
try to use the combination of the following java object.

java.net.*;
java.io.*;
18 years ago
This is the wrong board. But for php also works with other web servers such as IIS on windows. You should put index.php or other php file under the root of the web server. It is not at the installation dir of php. php will not work by default. You need to install mod, or plug-in, or dll to have it work. For further information, please visit www.php.net.
18 years ago
I used 5.0.x instead of 5.5.x recently on linux. The reason is simple, I can find much more installation guide or other supporting information on the internet for 5.0.x instead of 5.5.x. If you run into problem in configuration 5.5.x, it is very hard for you to get answer for your questions. I have this nightmare when configure the JK2.
18 years ago
The easiest way is to use page redirect. For html use the following code:
<html><head>
...
<meta http-equiv="REFRESH" content="10; URL=*****">
...
</head>
<body>
...
</body>
</html>

For JSP use:
response.sendRedirect("/*****");
18 years ago
I have set it up without any problem on both Linux and Windows. Please provide more information about your situation. Such as, which OS you are running on? Which step you reached? What is your error? etc. Please be as detail as possible.
18 years ago