Sponsored Content
Full Discussion: Mailx
Operating Systems Linux Mailx Post 302517666 by DGPickett on Wednesday 27th of April 2011 12:03:47 PM
Old 04-27-2011
Maybe that is not your email server (change D* line or the like in sendmail.cf), or there is a firewall in the way. Try "telnet smtp62.intersmtp.com 25" and see if you can get an SMTP prompt:
Code:
$ telnet xxx.yyy.com 25 
Trying...
Connected to qqq.yyy.com.
Escape character is '^]'.
220 zzzz.yyy.com -- Server ESMTP (Sun Java(tm) System Messaging Server 7u3-15.01 32bit (built Feb 12 2010))
421 4.4.2 Timeout while waiting for command.
Connection closed by foreign host.
$

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Need help with mailx

How can I send a file of Unix usernames to everyone on the file without making an alias in my .mailrc file? Using a mailx command. Thanks, J.J. (2 Replies)
Discussion started by: JJJ
2 Replies

2. Shell Programming and Scripting

mailx to to Dl

Is there any way that I can mailx to a distribution list without having a $HOME/.mailrc file? We have a distribution list in Outlook for our group say group@something.com. I am trting to do echo "Something"|mailx -s "Subject" group@something.com it doesnt work Any ideas? Thanks (1 Reply)
Discussion started by: sm321
1 Replies

3. UNIX for Dummies Questions & Answers

Help with mailx

I want to send a message with an attachment from Unix using the following command: uuencode $DIRNAME/$FILENAME1 | mailx -s "test subject" xyz@xyz I need to attach the file and I also want a simple message body like "there is an error. Please check it". Do I need to have this message body... (1 Reply)
Discussion started by: ssmith001
1 Replies

4. UNIX for Dummies Questions & Answers

mailx error message : mailx: NUL changed to @

If I use the "Mail" link instead of the "mail" link to ../mailx I get this error. Mail so-n-so @whatever.com mailx: NUL changed to @ Unknown command: "postmaster" The email still goes through but i get the error. If I use "mail" it goes thru without the error. Any ideas?? (2 Replies)
Discussion started by: BG_JrAdmin
2 Replies

5. UNIX for Advanced & Expert Users

MAILX help

Hello all, how do I view the default mail configurations using the mailx problem? At the moment, I have an account, and all the mail to that account is being routed to an email address, how can I view this behaviour? Also, is there anyway I can view the default mail settings for a server without... (0 Replies)
Discussion started by: Khoomfire
0 Replies

6. Shell Programming and Scripting

mailx

Hi, Thanks in Advance !! I have a korn script which is used to mail the reports to the users. I'm using the mailx utility. The uid used for running the script is "cronman", so the mails recieved by users are id FROM:"cronman". Now i want to change the FROM address to another user name... (2 Replies)
Discussion started by: pradeep_desh
2 Replies

7. UNIX and Linux Applications

MailX

Hi, I am not able to send direct mails from our unix server to our lotus notes id. It was fine until we upgrade our Lotus notes server. What are the changes need to add when we upgrade Lotus notes. Please advice. It run in sh file This is the statement uuencode $RTDIR/$filename... (0 Replies)
Discussion started by: rajani_p
0 Replies

8. UNIX for Advanced & Expert Users

mailx

whn mail command fails. Please tell various reasons. Thanks for the reply (2 Replies)
Discussion started by: ratna
2 Replies

9. Shell Programming and Scripting

Mailx: How to send a attachment using mailx command

Hi All, Can anyone please provide the command for sending an mail with attachment using mailx command. Thanks in Advance :) Regards, Siram. (3 Replies)
Discussion started by: Sriram.Vedula53
3 Replies

10. UNIX for Dummies Questions & Answers

need help with mailx

Hi Gurus, I have a solaris zone. I am finding a issue in the situation below. When I tried to send a mail in this format its failing. : mailx -s "test mail f" xxxxxx@yy.com But its working just fine if I use echo. echo "test body"|mailx -s "test mail " xxxxxxx@yy.com Is there... (1 Reply)
Discussion started by: rama krishna
1 Replies
sasl_client_step(3)						  SASL man pages					       sasl_client_step(3)

NAME
sasl_client_step - Perform a step in the authentication negotiation SYNOPSIS
#include <sasl/sasl.h> int sasl_client_step(sasl_conn_t *conn, const char *serverin, unsigned serverinlen, sasl_interact_t ** prompt_need, const char ** clientout, unsigned * clientoutlen); DESCRIPTION
sasl_client_step() performs a step in the authentication negotiation. It returns SASL_OK if the whole negotiation is successful and SASL_CONTINUE if this step is ok but at least one more step is needed. A client should not assume an authentication negotiation is success- ful just because the server signaled success via protocol (i.e. if the server said ". OK Authentication succeeded" in IMAP sasl_client_step should still be called one more time with a serverinlen of zero. If SASL_INTERACT is returned the library needs some values to be filled in before it can proceed. The prompt_need structure will be filled in with requests. The application should fulfill these requests and call sasl_client_start again with identical parameters (the prompt_need parameter will be the same pointer as before but filled in by the application). conn is the SASL connection context serverin is the data given by the server (decoded if the protocol encodes requests sent over the wire) serverinlen is the length of serverin clientout and clientoutlen is created. It is the initial client response to send to the server. It is the job of the client to send it over the network to the server. Any protocol specific encoding (such as base64 encoding) necessary needs to be done by the client. RETURN VALUE
sasl_client_step returns an integer which corresponds to one of the following codes. SASL_CONTINUE indicates success and that there are more steps needed in the authentication. SASL_OK indicates that the authentication is complete. All other return codes indicate errors and should either be handled or the authentication session should be quit. CONFORMING TO
RFC 4422 SEE ALSO
sasl(3), sasl_callbacks(3), sasl_errors(3), sasl_client_init(3), sasl_client_new(3), sasl_client_start(3) SASL
10 July 2001 sasl_client_step(3)
All times are GMT -4. The time now is 05:12 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy