33

I've had a cronjob working for about a fortnight without any problems. Then last night I checked I didn't get the email that I usually get. I went to the terminal to try send myself an email, I got the following error:

mail: cannot send message: process exited with a non-zero status

I haven't changed anything with my ssmtp cfg file. It just stopped working, when I check and recheck everything, the code, ssmtp, everything is perfect.

I send out my emails twice a day via cronjob. The crontab hasn't been interfered either. I really don't know why it would stop working.

The system sends out emails via gmail - I've gone into the gmail account and sent out test emails, they are sent and received without any problems.

Additionally I've checked throughout google, forums, websites I don't see any mistakes. This makes sense as everything was working fine 24 hours ago, and now it's just stopped.

Q: Is there any way of diagnosing and troubleshooting how to solve such a problem?

asked Feb 17, 2015 at 22:08
9
  • 1
    1) Have you tried running that cron command in your usual terminal to see the output? 2) Have you checked logs (usually in /var/log) 3) Have you checked that network ports used for mailing are not blocked on your Internet connection? Commented Feb 18, 2015 at 1:08
  • Q1 Yes, I did. When I did it gave the error. Q2 Looked at the /var/log, couldn't see any problems Q3 I've tried sending mail, from home, from thethering with my cell phone, and also from work - each of them have different internet connection - and all resulted with the error in the title. Commented Feb 18, 2015 at 1:18
  • 1
    What logs exactly did you check? Commented Feb 18, 2015 at 1:20
  • var/log/sudo syslog - it looks fine.. seems everything is working like crock work and then it started working again, I can send emails out from the terminal now.... Commented Feb 18, 2015 at 21:47
  • 3
    /var/log/mail.log I guess Commented Feb 20, 2015 at 1:20

9 Answers 9

40

I have get the same problem in an Ubuntu 14.04 server. And I find error message in /var/log/mail.err, which said:

postfix/sendmail[27115]: fatal: open /etc/postfix/main.cf: No such file or directory

Then I just reconfigured postfix and solved this problem.

sudo dpkg-reconfigure postfix
Chris Davies
128k16 gold badges176 silver badges323 bronze badges
answered May 1, 2015 at 11:51
3
  • 4
    Could you tell us what reconfig option you selected? Commented Sep 6, 2015 at 14:29
  • 2
    I selected server as "internet server" and domain as server domain all rest were first choice. This worked for me. Commented Aug 16, 2016 at 15:24
  • 2
    thanks for the hint: /var/log/mail.err - big help for newbie Commented Aug 18, 2020 at 3:43
1

Its mainly due to file size is very large, You can zip the file and resend them..

answered Oct 2, 2016 at 19:56
1

On Debian I got the error

mail: cannot send message: process exited with a non-zero status error 

and an exit code of

$ echo $?
$ 36

because the hostname in /etc/hostname and the name for 127.0.0.1 in /etc/hosts differed.

answered Mar 23, 2018 at 13:50
1

I don't know if it helps to anyone, but here is my experience. I configure ssmtp just to send emails from my Ubuntu 18.04 server.

What cause me the error was that gmail had "less secure apps off", this caused that google couldn't authenticate my server's certificate. Once enabled, I could start sending emails from the server. Hope it helps!

AdminBee
23.6k25 gold badges54 silver badges77 bronze badges
answered Dec 3, 2020 at 19:17
1
  • Thing to note for all future viewers; Less Secure Apps will be blocked/disabled permanently from 15 feb 2021. Commented Feb 3, 2021 at 12:52
0
sudo dpkg-reconfigure postfix

system mail name.

please read the log : vim /var/log/mail.err

ff@ubuntu:/var/log$ head -n 20 mail.err 
Sep 7 10:36:39 ubuntu sm-msp-queue[6302]: unable to qualify my own domain name 
(ubuntu) -- using short name
ff@ubuntu:/var/log$ 
answered Sep 7, 2018 at 9:27
1
  • 3
    Can you spell this out a bit more? It starts with roaima’s answer but I don’t understand the next three words. Commented Sep 7, 2018 at 10:05
0

I had the same error. I was using a gmail account to send emails. After checking my gmail I notice Google was sending to me Critical security alerts via email. I had to give permissions to unsecure apps in my Google account security section to make it works.

I'm using Docker and I have to implement the following in my Dockerfile too:

RUN echo "localhost localhost.localdomain" >> /etc/hosts
answered Jun 16, 2020 at 0:26
0

What caused me the error was that gmail had "less secure apps" set as "off", this caused google to be unable to authenticate my server's certificate. Once enabled, I could start sending emails from the server.

Go to your google account and search for "less secure apps" turn it on and test again! Worked like a charm from then on...

Greenonline
1,9637 gold badges17 silver badges25 bronze badges
answered Mar 27, 2022 at 20:52
0

Sorry this is so simple, but fought this error for hours and nothing worked. But a simple uninstall and reinstall did.

I copied out my config files for reference and ran WARNING - the purge will delete your config files

sudo apt purge postfix

https://askubuntu.com/a/1371568

It reinstalled and ran without issue

answered Mar 21, 2023 at 17:10
1
  • As it’s currently written, your answer is unclear. Please edit to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers in the help center. Commented Mar 23, 2023 at 14:45
-1

The solution was on my Debian is run the mail command as root.

Login as root

sudo su

or send mail as root

echo "Test message" | sudo mail -s "Subject" [email protected]
answered May 15, 2020 at 5:14
1
  • 3
    Your second command runs echo as root, it does not send mail as root. Regardless, running something as root isn't really a solution, it just shows that you have permission issues somewhere. Commented Dec 15, 2020 at 10:31

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.