UPDATED 2017-11-11
I'm setting up a web server for my business and I need to email error messages and notifications to myself so I can keep track of things, but I don't have a sendmail or postfix installation for my domain and DO NOT want to futz with that since it's just overkill for what I need.
Thankfully, a minimal mail user agent is installed with Mageia (and likely in many more variants of Linux as part of their base package) called mailx (this was formerly called nail, which explains the names of a few files).
The system-wide configuration file is located at /etc/nail.rc. Each user can have a ~/.nailrc file, but since my server is running headless, I put everything in /etc/nail.rc. As well, you can put per-user modifications in the more common ~/.mailrc.
There seems to be a general problem for people getting mailx to work with Gmail. Here's what I did:
1. Make sure that POP is enabled in your Gmail Settings.
2. Add the following to /etc/nail.rc:
#configure Gmail SMTP
set smtp-use-starttls
set from=USERNAME@gmail.com
set smtp=smtp.gmail.com:587
set smtp-auth-user=USERNAME@gmail.com
set auth-login=USERNAME
set smtp-auth-password=PASSWORD
NOTE: Substitute your own account name for USERNAME and your own password for PASSWORD.
NOTE: Gmail does not use the standard port 25 for SMTP. As you can see above, I used port 587 for Gmail; port 465 may work for other mail servers.
To test if you have been successful:
# echo testing | mail -v yourusername@maildomain.com
Success is silent, simply returning you to the command line.
Adding that -v directive puts nail in verbose mode and may give a clue as to why a connection is failing if it is --- or announce it's success. If there are no errors, you'll see a log of transactions between you and the GMail server, then you'll be returned to the command prompt and you'll find a message with the subject "test" in your Gmail mailbox.
Note that I'm not using mailx to read mail - I'm not that much of a masochist. That's why I didn't use the IMAP option of mail.
Some apps require postfix to be installed as a dependency. If you don't need it, uninstall it with
$ sudo rpm -e --nodeps postfix
NOTE:
You may find it necessary to "fix" the default mail application that your system uses. Mageia insists on making it 'sendmail' by default and not allowing the choice of /bin/mail through /etc/alternatives. You can fix it yourself by looking here:
MaximumHoyt: Managing /etc/alternatives
NOTE_1:
There are over 1000 views of this article and no comments. Did you find it useful?
NOTE_2:
I filed a bug report for this on 2015-05-22 and it is still open.
NOTE_3:
Lately, I have not been able to send email through Gmail, getting a message to see https://support.google.com/mail/answer/78754
NOTE_4:
Google is now blocking mail/nail as an "unsecure app". You need to disable this security feature for this to work.
I'm setting up a web server for my business and I need to email error messages and notifications to myself so I can keep track of things, but I don't have a sendmail or postfix installation for my domain and DO NOT want to futz with that since it's just overkill for what I need.
Thankfully, a minimal mail user agent is installed with Mageia (and likely in many more variants of Linux as part of their base package) called mailx (this was formerly called nail, which explains the names of a few files).
The system-wide configuration file is located at /etc/nail.rc. Each user can have a ~/.nailrc file, but since my server is running headless, I put everything in /etc/nail.rc. As well, you can put per-user modifications in the more common ~/.mailrc.
There seems to be a general problem for people getting mailx to work with Gmail. Here's what I did:
1. Make sure that POP is enabled in your Gmail Settings.
2. Add the following to /etc/nail.rc:
#configure Gmail SMTP
set smtp-use-starttls
set from=USERNAME@gmail.com
set smtp=smtp.gmail.com:587
set smtp-auth-user=USERNAME@gmail.com
set auth-login=USERNAME
set smtp-auth-password=PASSWORD
NOTE: Substitute your own account name for USERNAME and your own password for PASSWORD.
NOTE: Gmail does not use the standard port 25 for SMTP. As you can see above, I used port 587 for Gmail; port 465 may work for other mail servers.
To test if you have been successful:
# echo testing | mail -v yourusername@maildomain.com
Success is silent, simply returning you to the command line.
Adding that -v directive puts nail in verbose mode and may give a clue as to why a connection is failing if it is --- or announce it's success. If there are no errors, you'll see a log of transactions between you and the GMail server, then you'll be returned to the command prompt and you'll find a message with the subject "test" in your Gmail mailbox.
Note that I'm not using mailx to read mail - I'm not that much of a masochist. That's why I didn't use the IMAP option of mail.
Some apps require postfix to be installed as a dependency. If you don't need it, uninstall it with
$ sudo rpm -e --nodeps postfix
NOTE:
You may find it necessary to "fix" the default mail application that your system uses. Mageia insists on making it 'sendmail' by default and not allowing the choice of /bin/mail through /etc/alternatives. You can fix it yourself by looking here:
MaximumHoyt: Managing /etc/alternatives
NOTE_1:
There are over 1000 views of this article and no comments. Did you find it useful?
NOTE_2:
I filed a bug report for this on 2015-05-22 and it is still open.
NOTE_3:
Lately, I have not been able to send email through Gmail, getting a message to see https://support.google.com/mail/answer/78754
NOTE_4:
Google is now blocking mail/nail as an "unsecure app". You need to disable this security feature for this to work.
Comments