Sponsored Content
Full Discussion: Sendmail & SMTP
Operating Systems Solaris Sendmail & SMTP Post 302102392 by KenLynch on Wednesday 10th of January 2007 06:48:57 AM
Old 01-10-2007
Hi Guys,

After much scratching of head I edited the /etc/mail/submit.cf file and changed the default MTA host from localhost to mailhost.

Changed from:

D{MTAHost}localhost

To ....

D{MTAHost}mailhost

I tried my script again and this time while it does appear to be trying to connect to the mailhost it is throwing up some new messages.


me@domain.ie... Connecting to mailhost via relay...
220 gran.netsource.ie ESMTP Spammers are not welcome here! Wed, 10 Jan 2007 11:34:10 +0000
>>> EHLO servername.domain
250-gran.netsource.ie Hello servername.domain [xxx.xx.xx.x]
250-SIZE 62914560
250-PIPELINING
250 HELP
>>> MAIL From:<root@servername.domain> SIZE=194
250 <root@servername.domain> is syntactically correct
>>> RCPT To:<me@domain.ie>
>>> DATA
250 <me@domain.ie> verified
354 Enter message, ending with "." on a line by itself
>>> .
550-Could not verify sender
550 rejected: cannot route to sender <root@servername.domain>
>>> RSET
250 Reset OK
root... Using cached ESMTP connection to mailhost via relay...
>>> MAIL From:<> SIZE=1218
250 <> is syntactically correct
>>> RCPT To:<root@servername.domain>
>>> DATA
550 Cannot route to <root@servername.domain>
503 Valid RCPT TO <recipient> must precede DATA
>>> RSET
250 Reset OK
>>> RSET
250 Reset OK
postmaster... Using cached ESMTP connection to mailhost via relay...
>>> MAIL From:<> SIZE=2242
250 <> is syntactically correct
>>> RCPT To:<postmaster@servername.domain>
>>> DATA
550 Cannot route to <postmaster@servername.domain>
503 Valid RCPT TO <recipient> must precede DATA
>>> RSET
250 Reset OK
Jan 10 11:36:39 servername sendmail[6017]: [ID 801593 mail.alert] l0ABabrN006017: Losing ./qfl0ABabrN006017: savemail panic
Closing connection to mailhost
>>> QUIT
221 gran.netsource.ie closing connection


Any ideas on where to go from here?

Cheers muckers ....
 

10 More Discussions You Might Find Interesting

1. IP Networking

SMTP with sendmail

Hi, I have a solaris 9 box, and 2 domains A.com and B.net. the machine is on B.net. I am not able to send emails to @A.com using mail or mailx. after reading on sendmail, there was something about relaying and editing the file /etc/mail/relay-domains. Please let me know if this is what i... (1 Reply)
Discussion started by: 0ktalmagik
1 Replies

2. Solaris

Enabling sendmail with SMTP

Hi all, I want to send mails through Sendmail using SMTP server, Pls how to set that A.S.A.P. Regards (2 Replies)
Discussion started by: adel8483
2 Replies

3. SCO

SCO 5.0.7 Sendmail. Need help on how to configure SMTP

Did anyone know or can provide some instructions on how to setup smtp for sendmail. All I need to do is email files from sco thru my ISP smtp provider. please help (3 Replies)
Discussion started by: miles556
3 Replies

4. UNIX for Dummies Questions & Answers

Sendmail? Mailx? SMTP?

We require e-mails to come from one of our Solaris 10 boxes ASAP and have found that when using such things as Sendmail and Mailx all the mail goes to a Q that only fires every 15 minutes. We have tried everything we could think of to adjust this to force the Q to go every 1 minute but so far no... (3 Replies)
Discussion started by: LRoberts
3 Replies

5. UNIX for Dummies Questions & Answers

Using Sendmail (& attachment)

Hi, This is my first thread. Iam trying the following: OS: Sun Database: DB2, Informix, Oracle * Get the status of the database (using database command line options) * pipe to a text file * send mail of the text file to receiptents. TODO1: First step i tried to send a test message.... (3 Replies)
Discussion started by: kenkanya
3 Replies

6. Shell Programming and Scripting

Send email from sendmail on AIX using exchange server as SMTP server

i am new in AIX i am trying to write a script to take a backup for specific files on server to and check error log if backup success send email to administrator , script done except for sending mail , i try to configure sendmail on aix to use our exchange server to send emails but still get error... (0 Replies)
Discussion started by: ahmed_salah
0 Replies

7. UNIX for Dummies Questions & Answers

Can't configure sendmail to send mails to external SMTP Server

Hi all,I know, that this is very common issue, but I can't find where is the problem... I have Solaris 10 installed.I want to send mail to external SMTP server, like:echo "letter body"| mailx -s "subject" test@test.comBut I donno what kind of changes I have to do in /etc/hosts and sendmail.cf or... (5 Replies)
Discussion started by: nypreH
5 Replies

8. Red Hat

How to setup Sendmail as SMTP Relay?

Hi Guys, I want to setup sendmail using my username and password on my ISP to be able to send out messages. I'm using Linux. So far, what I've done is modified the sendmail.mc with the following changes: define(`SMART_HOST',`myispsmtpoutgoingserver') FEATURE(authinfo)dnl In my... (0 Replies)
Discussion started by: adshocker
0 Replies

9. Solaris

How to make smtp:sendmail online from maintenance mode?

Hi Everyone, when i type "svcs -a | grep sendmail" it is giving the below output. $ svcs -a | grep sendmail disabled Nov_05 svc:/network/sendmail-client:default maintenance 10:31:52 svc:/network/smtp:sendmail Can anyone help me that how to bring svc:/network/smtp:sendmail in... (10 Replies)
Discussion started by: Sun4Oracle
10 Replies

10. Solaris

Configure sendmail with SMTP

Hello, I'm trying to configure sendmail with SMTP authentication on a SunOS 5.11 operating system. I have been read various documentation / tutorials and unfortunately is not working. I need help from someone who has configured smtp on this operating system. When I try to send a mail, I have... (2 Replies)
Discussion started by: d4rkm4nx99
2 Replies
Net::SMTP(3pm)						 Perl Programmers Reference Guide					    Net::SMTP(3pm)

NAME
Net::SMTP - Simple Mail Transfer Protocol Client SYNOPSIS
use Net::SMTP; # Constructors $smtp = Net::SMTP->new('mailhost'); $smtp = Net::SMTP->new('mailhost', Timeout => 60); DESCRIPTION
This module implements a client interface to the SMTP and ESMTP protocol, enabling a perl5 application to talk to SMTP servers. This docu- mentation assumes that you are familiar with the concepts of the SMTP protocol described in RFC821. A new Net::SMTP object must be created with the new method. Once this has been done, all SMTP commands are accessed through this object. The Net::SMTP class is a subclass of Net::Cmd and IO::Socket::INET. EXAMPLES
This example prints the mail domain name of the SMTP server known as mailhost: #!/usr/local/bin/perl -w use Net::SMTP; $smtp = Net::SMTP->new('mailhost'); print $smtp->domain," "; $smtp->quit; This example sends a small message to the postmaster at the SMTP server known as mailhost: #!/usr/local/bin/perl -w use Net::SMTP; $smtp = Net::SMTP->new('mailhost'); $smtp->mail($ENV{USER}); $smtp->to('postmaster'); $smtp->data(); $smtp->datasend("To: postmaster "); $smtp->datasend(" "); $smtp->datasend("A simple test message "); $smtp->dataend(); $smtp->quit; CONSTRUCTOR
new Net::SMTP [ HOST, ] [ OPTIONS ] This is the constructor for a new Net::SMTP object. "HOST" is the name of the remote host to which an SMTP connection is required. If "HOST" is not given, then the "SMTP_Host" specified in "Net::Config" will be used. "OPTIONS" are passed in a hash like fashion, using key and value pairs. Possible options are: Hello - SMTP requires that you identify yourself. This option specifies a string to pass as your mail domain. If not given a guess will be taken. LocalAddr and LocalPort - These parameters are passed directly to IO::Socket to allow binding the socket to a local port. Timeout - Maximum time, in seconds, to wait for a response from the SMTP server (default: 120) Debug - Enable debugging information Example: $smtp = Net::SMTP->new('mailhost', Hello => 'my.mail.domain' Timeout => 30, Debug => 1, ); METHODS
Unless otherwise stated all methods return either a true or false value, with true meaning that the operation was a success. When a method states that it returns a value, failure will be returned as undef or an empty list. banner () Returns the banner message which the server replied with when the initial connection was made. domain () Returns the domain that the remote SMTP server identified itself as during connection. hello ( DOMAIN ) Tell the remote server the mail domain which you are in using the EHLO command (or HELO if EHLO fails). Since this method is invoked automatically when the Net::SMTP object is constructed the user should normally not have to call it manually. etrn ( DOMAIN ) Request a queue run for the DOMAIN given. auth ( USERNAME, PASSWORD ) Attempt SASL authentication. mail ( ADDRESS [, OPTIONS] ) send ( ADDRESS ) send_or_mail ( ADDRESS ) send_and_mail ( ADDRESS ) Send the appropriate command to the server MAIL, SEND, SOML or SAML. "ADDRESS" is the address of the sender. This initiates the sending of a message. The method "recipient" should be called for each address that the message is to be sent to. The "mail" method can some additional ESMTP OPTIONS which is passed in hash like fashion, using key and value pairs. Possible options are: Size => <bytes> Return => <???> Bits => "7" | "8" Transaction => <ADDRESS> Envelope => <ENVID> reset () Reset the status of the server. This may be called after a message has been initiated, but before any data has been sent, to cancel the sending of the message. recipient ( ADDRESS [, ADDRESS [ ...]] [, OPTIONS ] ) Notify the server that the current message should be sent to all of the addresses given. Each address is sent as a separate command to the server. Should the sending of any address result in a failure then the process is aborted and a false value is returned. It is up to the user to call "reset" if they so desire. The "recipient" method can some additional OPTIONS which is passed in hash like fashion, using key and value pairs. Possible options are: Notify => SkipBad => ignore bad addresses If "SkipBad" is true the "recipient" will not return an error when a bad address is encountered and it will return an array of addresses that did succeed. $smtp->recipient($recipient1,$recipient2); # Good $smtp->recipient($recipient1,$recipient2, { SkipBad => 1 }); # Good $smtp->recipient("$recipient,$recipient2"); # BAD to ( ADDRESS [, ADDRESS [...]] ) cc ( ADDRESS [, ADDRESS [...]] ) bcc ( ADDRESS [, ADDRESS [...]] ) Synonyms for "recipient". data ( [ DATA ] ) Initiate the sending of the data from the current message. "DATA" may be a reference to a list or a list. If specified the contents of "DATA" and a termination string ". " is sent to the server. And the result will be true if the data was accepted. If "DATA" is not specified then the result will indicate that the server wishes the data to be sent. The data must then be sent using the "datasend" and "dataend" methods described in Net::Cmd. expand ( ADDRESS ) Request the server to expand the given address Returns an array which contains the text read from the server. verify ( ADDRESS ) Verify that "ADDRESS" is a legitimate mailing address. help ( [ $subject ] ) Request help text from the server. Returns the text or undef upon failure quit () Send the QUIT command to the remote SMTP server and close the socket connection. ADDRESSES
All methods that accept addresses expect the address to be a valid rfc2821-quoted address, although Net::SMTP will accept accept the address surrounded by angle brackets. funny user@domain WRONG "funny user"@domain RIGHT, recommended <"funny user"@domain> OK SEE ALSO
Net::Cmd AUTHOR
Graham Barr <gbarr@pobox.com> COPYRIGHT
Copyright (c) 1995-1997 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. $Id: //depot/libnet/Net/SMTP.pm#25 $ perl v5.8.0 2002-06-01 Net::SMTP(3pm)
All times are GMT -4. The time now is 05:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy