UNIX command line mailer


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers UNIX command line mailer
# 1  
Old 11-08-2005
UNIX command line mailer

What is the difference betweeen MAILX and SENDMAIL. I have SENDMAIL configured in my system, how is it different then MAILX, espicially in the syntax of sending mail from the command line.
Thanks in advance
# 2  
Old 11-08-2005
mailx
Quote:
The mailx utility provides a message sending and receiving facility.
It has two major modes, selected by the options used: Send Mode and
Receive Mode.
Send Mode
Send Mode can be used by applications or users to send messages from
the text in standard input.

Receive Mode
Receive Mode is more oriented towards interactive users. Mail can be
read and sent in this interactive mode.

Sendmail
Quote:
sends a message to one or more recipients, routing the message
over whatever networks are necessary. Sendmail does internetwork
forwarding as necessary to deliver the message to the correct place.

Sendmail is not intended as a user interface routine; other programs
provide user-friendly front ends; sendmail is used only to deliver pre-
formatted messages.
More information available in your man pages ($ man mailx)
# 3  
Old 11-08-2005
Question unix mail

I am totally a newbie so pls help me out a here.
Does this mean that even if sendmail is installed, mailx is still used in the background, or is sendmail independently functioning.
Thanks
# 4  
Old 11-08-2005
You need sendmail or some other MTA. You don't need mailx.

If your sendmail is in /usr/lib/sendmail, move it to /usr/lib/no-sendmail. Send an email to another domain (send it to an address that isn't part of your domain). Look at your mail queue ($ man mailq). Your mail will be sitting there unable to send because there is no sendmail (you moved it). Remember to move sendmail back now.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

UNIX command to go to next line

I've a requirement to reposition the cursor on the new line after 'n' characters on a line/string in a flat file in UNIX. Please help me with this. (3 Replies)
Discussion started by: S B P KOUNDINYA
3 Replies

2. Shell Programming and Scripting

How to add line number using UNIX command?

Hi, I am working on Shell script and I have a .dat file in which I want to add line numbers. Please see below example file Input File: 19523479811841494432C2013052700000000 19523479811730333980A2013052700000000 19523479811417044397I2013052700000000 19523479811205895810A2013052700000000... (7 Replies)
Discussion started by: jnrohit2k
7 Replies

3. Shell Programming and Scripting

Specify an entire UNIX command as a command line argument

I'm trying to write a bash script called YN that looks like the following YN "Specify a question" "doThis" "doThat" where "doThis" will be executed if the answer is "y", otherwise "doThat". For example YN "Do you want to list the file dog?" "ls -al dog" "" Here's my attempt... (3 Replies)
Discussion started by: LeoKSimon
3 Replies

4. Shell Programming and Scripting

UNIX script / Command >>> in one line

Hi Experts, Basically I am a SAP programmer. I don't know much about UNIX. But I got a situation, need to use UNIX script /command in my programming. I searched the forum and found the below code. I would like to pass the below UNIX script in my programming code. But my programming will... (1 Reply)
Discussion started by: rbadveli
1 Replies

5. Shell Programming and Scripting

command line args in unix

Hi, i have a perl script named test.pl. It is executed as cat *.log|test.pl i need the complete command line args. I tried using basename $0 but im getting test.pl only but not cat *.log... Can anyone help me on this. Thanks in advance (3 Replies)
Discussion started by: niteesh_!7
3 Replies

6. UNIX for Advanced & Expert Users

unix command : how to insert text at the cursor location via command line?

Hi, Well my title isn't very clear I think. So to understand my goal: I have a script "test1" #!/bin/bash xvkbd -text blabla with xbindkeys, I bind F5 key in order it runs my test1 script So when I press F5, test1 runs. I'm under Emacs/Vi and I press F5 in order to have "blabla" be... (0 Replies)
Discussion started by: xib.be
0 Replies

7. UNIX for Dummies Questions & Answers

Unix command line question

I'm new to Unix and I'm looking for some assistance. We have 20 different accounts we must login to every day. Logging in has become quite the chore and most nights, we have to log out. I'm looking for a way to simply copy and paste the commands into each window to make things easier. I have been... (2 Replies)
Discussion started by: Judo_Bear
2 Replies

8. Shell Programming and Scripting

assign a command line argument and a unix command to awk variables

Hi , I have a piece of code ...wherein I need to assign the following ... 1) A command line argument to a variable e.g origCount=ARGV 2) A unix command to a variable e.g result=`wc -l testFile.txt` in my awk shell script When I do this : print "origCount" origCount --> I get the... (0 Replies)
Discussion started by: sweta_doshi
0 Replies

9. Filesystems, Disks and Memory

starteam for unix (command line )

hello does someone knows if there is starteam (like sourcesafe ) for unix ? in command line mode ? (0 Replies)
Discussion started by: umen
0 Replies

10. Shell Programming and Scripting

E-Mail from command line for UNIX and Perl??

Hi Is there any way to use UNIX and Perl to automate sending e-mail. I got a dynamic changing file that send out to people in my mailing list and want to experinment to see if Perl and UNIX can send it out for me when the content is change. I found a Perl source code but dont really know how to... (4 Replies)
Discussion started by: jy2728
4 Replies
Login or Register to Ask a Question