September 10th, 2006 05:45 PM
want to configure a local system on my lan to send mails through a relay server(uses postfix)...any help or links are welcome...
September 6th, 2006 03:49 PM
trying to filter the mails out using procmail...
however even though i ve checked .procmailrc and .forward file,it doesen't works...
September 5th, 2006 10:31 PM
how to configure procmail with sendmail in linux?
Any useful links are welcome.
September 5th, 2006 02:17 PM
here's a part of script...
# Read the message headers from stdin
msg = rfc822.Message( sys.stdin )
fromwho = msg.getaddr( "From" )
subject = msg.getheader( "Subject" )
l = string.split(...
September 5th, 2006 06:10 AM
I have a python code that has a line:
msg=rfc822.Message(sys.stdin)
The python script running this extracts the message in 'msg' and then gets the various header fields out of it.
However i ve...
August 25th, 2006 07:45 PM
Hi...on a solaris system i have certain directories that contain c codes....wat i need to do is write a shell script(or C code) to execute those c codes within the directories and compare there...
November 5th, 2005 02:20 PM
thx for the reply...atleast now i ve got some start....
October 26th, 2005 07:28 PM
here's something i m lost about...a particular C code looks like this
int main(int argc,char **argv)
{
char buff[2];
strcpy(buff,argv[1]);
.....
some code
.....
}