I am working with a really raw build of Debian that came pre-installed on a VPS and has no application software whatsoever on it. For example, I just went to test the mail system and found that the "mail" client is not there (command not found).
Now, in all honesty, I never knew exactly what "mail" is, other than it points to /etc/bin/mail. Is mail the same thing as elm, or is it different?
To solve my immediate problem, I installed mutt. The question is, should I:
- install mail too
or - make the command 'mail' a symbolic link to mutt
or - just leave things the way they are with mutt installed, but mail not installed
mutt
is an email client. You can use it to read email either locally or on a remote server.mail
is a program which generates email messages and hands them off to a local mail transfer agent (i. e. SMTP server) for delivery. – DopeGhoti Jan 09 '18 at 17:25mail
(or POSIXmailx
) is a full client, albeit a rather obtuse one compare to Mutt for example. You can usemail
from the command-line to easily send email, but it can also be used to receive email. – Stephen Kitt Jan 09 '18 at 17:29mail
tomutt
, as you say there is an expectedmail
“API” which you would end up breaking.bsd-mailx
is small enough, you should just install that (I guess I should make that a proper answer). – Stephen Kitt Jan 09 '18 at 17:36