Sendemail... is there a receivemail?


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu Sendemail... is there a receivemail?
# 1  
Old 05-24-2014
Sendemail... is there a receivemail?

Hello,

I installed the
Code:
sendemail

program for commandline/script outgoing mail. It works great. I was wondering if there is some simple program to receive mail. Something like the sendemail program...

Grtz
# 2  
Old 05-24-2014
Did you look into the fetchmail package?
This User Gave Thanks to RudiC For This Post:
# 3  
Old 05-24-2014
sendmail is a MTA (Mail Transfer Agent). You need a MDA (Mail Delivery Agent) to handle incoming email. An MDA accepts mail from an MTA and performs the actual delivery to a user's mailbox. A user then uses a MUA (Mail User Agent) to read their mailbox.

There are many MDAs available. procmail is a very common one.
This User Gave Thanks to fpmurphy For This Post:
# 4  
Old 05-24-2014
sendmail can also receive mail. It must run as a service/daemon and listen to port 25(smtp) at all network interfaces.
It usually comes with mail.local that creates Unix mailbox files.
This User Gave Thanks to MadeInGermany For This Post:
# 5  
Old 05-24-2014
Just in case, note that the OP specified sendemail, not sendmail. Perhaps it's a typo, but there is such a program and it is available via ubuntu's package repositories.

http://packages.ubuntu.com/trusty/sendemail
http://caspian.dotconf.net/menu/Software/SendEmail/

Regards,
Alister
These 2 Users Gave Thanks to alister For This Post:
# 6  
Old 05-24-2014
Quote:
Originally Posted by alister
Just in case, note that the OP specified sendemail, not sendmail. Perhaps it's a typo, but there is such a program and it is available via ubuntu's package repositories.

Ubuntu
http://caspian.dotconf.net/menu/Software/SendEmail/

Regards,
Alister
Yep.. it's a typo in the title. It's sendemail I'm using with Ubuntu DT 10.
Moderator's Comments:
Mod Comment The title has been changed to make this thread less confusing.


---------- Post updated at 05:55 PM ---------- Previous update was at 05:50 PM ----------

Quote:
Originally Posted by RudiC
Did you look into the fetchmail package?
Never heard of it. Well..I installed it today and I think this is what I was looking for. Thanks.
This User Gave Thanks to raylier For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sendemail how to send an email with a subject variable

Hi,:) I try this : #!/bin/bash sender="me@example.com" recipient="you@example.com" subject="TEST FILE" server="0.0.0.0" file=$(cat file.txt) /usr/bin/sendemail -f $sender -t $recipient -u $subject -m $file My file.txt: BLABLALA BLABLABLA (7 Replies)
Discussion started by: Arnaudh78
7 Replies

2. Shell Programming and Scripting

SendEmail and Variable

Hi everyone, I try to send an email with "sendemail", I created four variables for do cleaner but it doesn't work :( below : #!/bin/bash sender=$(X@x.com) recipient=$(x@x.com) subject=$(Files Copy) server=$(x.x.x.x) /usr/bin/sendemail -f $sender -t $recipient -u $subject -m blablabla... (2 Replies)
Discussion started by: Arnaudh78
2 Replies

3. UNIX for Dummies Questions & Answers

Sendemail Error - Authentication... failed

SCO Unix OpenServer v6. We use the script below for sending mass emails with attachments. sendemail -f $From_user -o message-file=/u/fg4/data/EmailDefaultBody.html -u $su bj -s $MAIL_SRVR -xu $MAIL_USER -xp $MAIL_PSWD -a $emlname.pdf -t $MAILTO MAIL_SVR=SMPTOUT.SECURESERVER.NET ... (0 Replies)
Discussion started by: jet47
0 Replies

4. Solaris

Send multi content email using sendemail utility

Hi Guys, I am trying to send email from solaris server using sendemail utility. I want to send multi content email. For example, i want to send email body with html file and a attachment of txt file. I using below code but the html not render correctly in email body. ( echo "To:... (2 Replies)
Discussion started by: tharmendran
2 Replies

5. Shell Programming and Scripting

SendEmail - Script reading database file with sleep command

Hello, I would like to send email message to my mail list. I have been running linux based server and I submitted this process manually up to now. I would like to send each individual with a shell script. In ssh panel, I tested below command and it works smoothly. sendEmail -t... (1 Reply)
Discussion started by: baris35
1 Replies

6. Solaris

Solaris 10 Sendemail with Attachment

Hello I need your kind help for configuring email on Solaris 10 so I can send reports from the system to my management and my colleagues. I have the IP address of the email server of my company and the port 2525. I went through many documents online with no luck. Can any one help me... (4 Replies)
Discussion started by: samer.odeh
4 Replies

7. Shell Programming and Scripting

sendEmail: Script and Array

I have a script that send email using sendEmail (CentOS shell) script is: sendEmail -vvv -u "TestCompany, Inc.: USB Added" -f user@domain.com -t To@domain.com -s ASPMX.L.GOOGLE.com -m "USB Activity" -o tls=aut o username=user3@domain.com password=password So far this works fine. Now i... (5 Replies)
Discussion started by: kashif.live
5 Replies
Login or Register to Ask a Question