Simple Basic eMail providers
-
@gjacobse said in Simple Basic eMail providers:
However, I'm looking for just that,.. does it still exist? Unix Mail, PINE or similar is about all I want / need, and without having to host it myself.
What you want is a legal client that just reads email as a single file. It's the mailbox side, not the email provisioning side, that you are talking about. You don't care who the provider is, you are only talking about the client.
-
@scottalanmiller said in Simple Basic eMail providers:
You are confusing the provider with the protocol and client. What you want is available from Office 365, Google Mail, Zoho, Amazon Email, Rackspace.... everyone. I know of no provider that doesn't have what you want.
While I have never tried to SSH to my gMail account, I wouldn't think it possible... however - as you have stated,.. it's a protocol..
-
@gjacobse said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
You are confusing the provider with the protocol and client. What you want is available from Office 365, Google Mail, Zoho, Amazon Email, Rackspace.... everyone. I know of no provider that doesn't have what you want.
While I have never tried to SSH to my gMail account, I wouldn't think it possible... however - as you have stated,.. it's a protocol..
SSH into Gmail? What does that even mean to you? SSH is not an email protocol of any sort. That's a shell access protocol. You just want email to arrive on your desktop via SMTP and then get stored in a PINE compatible file for you to read. It's that simple.
-
All of the things that you describe are applications. Not email services, just applications. So let me reword what you said, or I think you said, but using modern applications to see if you mean what I think you mean....
You just want email in Outlook, Thunderbird or similar but don't want to have to install the application on your own machine... but you want a VDI desktop somewhere else with the email client on it so that you can just not install it?
Is that REALLY want you want?
-
I'm still confused. What are you actually looking for?
-
I would read this as "I want a CLI email client, and not outlook or Thunderbird."
-
@scottalanmiller said in Simple Basic eMail providers:
All of the things that you describe are applications. Not email services, just applications. So let me reword what you said, or I think you said, but using modern applications to see if you mean what I think you mean....
You just want email in Outlook, Thunderbird or similar but don't want to have to install the application on your own machine... but you want a VDI desktop somewhere else with the email client on it so that you can just not install it?
Is that REALLY want you want?
I don't believe so. And I believe I see what you are referencing. While I realize there is a difference, you can install MAIL on Linux, and you can then send mail via the BASH to another user. That is all I wish to do, but to someone that is external to my system.
-
@DustinB3403 said in Simple Basic eMail providers:
I would read this as "I want a CLI email client, and not outlook or Thunderbird."
Fine, but he said he didn't want to install an application. So the REAL need here, apparently, is a remote VDI desktop to put the application on. If he wanted PINE locally he'd just... install PINE.
-
@gjacobse said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
All of the things that you describe are applications. Not email services, just applications. So let me reword what you said, or I think you said, but using modern applications to see if you mean what I think you mean....
You just want email in Outlook, Thunderbird or similar but don't want to have to install the application on your own machine... but you want a VDI desktop somewhere else with the email client on it so that you can just not install it?
Is that REALLY want you want?
I don't believe so. And I believe I see what you are referencing. While I realize there is a difference, you can install MAIL on Linux, and you can then send mail via the BASH to another user. That is all I wish to do, but to someone that is external to my system.
But you can send mail using MAIL, to external recipients.
Nothing special is needed.
-
@gjacobse said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
All of the things that you describe are applications. Not email services, just applications. So let me reword what you said, or I think you said, but using modern applications to see if you mean what I think you mean....
You just want email in Outlook, Thunderbird or similar but don't want to have to install the application on your own machine... but you want a VDI desktop somewhere else with the email client on it so that you can just not install it?
Is that REALLY want you want?
I don't believe so. And I believe I see what you are referencing. While I realize there is a difference, you can install MAIL on Linux, and you can then send mail via the BASH to another user. That is all I wish to do, but to someone that is external to my system.
Nope, still confused. What does "send mail via the BASH" mean to you? I have no idea even what this is supposed to have meant. BASH doesn't interact with email. And it doesn't send things.
-
gjacob@ubuntu:~$ mail No mail for gjacob gjacob@ubuntu:~$ mail gjacob Cc: Subject: For Scott This is a message for scott. This is my C@C system, so there are no external SMTP or POP or other ports being forwarded. gjacob@ubuntu:~$ ~~
-
@scottalanmiller said in Simple Basic eMail providers:
@gjacobse said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
All of the things that you describe are applications. Not email services, just applications. So let me reword what you said, or I think you said, but using modern applications to see if you mean what I think you mean....
You just want email in Outlook, Thunderbird or similar but don't want to have to install the application on your own machine... but you want a VDI desktop somewhere else with the email client on it so that you can just not install it?
Is that REALLY want you want?
I don't believe so. And I believe I see what you are referencing. While I realize there is a difference, you can install MAIL on Linux, and you can then send mail via the BASH to another user. That is all I wish to do, but to someone that is external to my system.
Nope, still confused. What does "send mail via the BASH" mean to you? I have no idea even what this is supposed to have meant. BASH doesn't interact with email. And it doesn't send things.
I think he means something like echo "my message" | mail -s "subject" [email protected]
-
@gjacobse said in Simple Basic eMail providers:
While I realize there is a difference, you can install MAIL on Linux... That is all I wish to do, but to someone that is external to my system.
Okay so.... sending mail to anyone requires SMTP. To have SMTP you need an SMTP server. This could be Postfix, Sendmail, Gmail, Office 365, Exchange, etc. They are all SMTP servers. Anything that you can call email goes over SMTP.
What you are describing with MAIL is a postoffice box server, that's different. That's a text file editor that reads local text files after the email system has handed them over. It's "post mail" if you will excuse the pun. It's a mailbox system after the files are no longer email. You perceive it as email, but there is no email without the SMTP server.
So to get any email, ever, to a system so that PINE can read the resulting file requires an SMTP server to send and receive the mail, and a postoffice box server (like Cyrus) to store it locally for you. Then PINE can read the files.
-
@stacksofplates said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
@gjacobse said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
All of the things that you describe are applications. Not email services, just applications. So let me reword what you said, or I think you said, but using modern applications to see if you mean what I think you mean....
You just want email in Outlook, Thunderbird or similar but don't want to have to install the application on your own machine... but you want a VDI desktop somewhere else with the email client on it so that you can just not install it?
Is that REALLY want you want?
I don't believe so. And I believe I see what you are referencing. While I realize there is a difference, you can install MAIL on Linux, and you can then send mail via the BASH to another user. That is all I wish to do, but to someone that is external to my system.
Nope, still confused. What does "send mail via the BASH" mean to you? I have no idea even what this is supposed to have meant. BASH doesn't interact with email. And it doesn't send things.
I think he means something like echo "my message" | mail -s "subject" [email protected]
That's the mailx application. Not part of BASH. And not installed by default nearly anywhere. But it just drops the mail for the SMTP server to pick it up. Only works if you are hosting your own SMTP server locally.
-
@scottalanmiller said in Simple Basic eMail providers:
@stacksofplates said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
@gjacobse said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
All of the things that you describe are applications. Not email services, just applications. So let me reword what you said, or I think you said, but using modern applications to see if you mean what I think you mean....
You just want email in Outlook, Thunderbird or similar but don't want to have to install the application on your own machine... but you want a VDI desktop somewhere else with the email client on it so that you can just not install it?
Is that REALLY want you want?
I don't believe so. And I believe I see what you are referencing. While I realize there is a difference, you can install MAIL on Linux, and you can then send mail via the BASH to another user. That is all I wish to do, but to someone that is external to my system.
Nope, still confused. What does "send mail via the BASH" mean to you? I have no idea even what this is supposed to have meant. BASH doesn't interact with email. And it doesn't send things.
I think he means something like echo "my message" | mail -s "subject" [email protected]
That's the mailx application. Not part of BASH. And not installed by default nearly anywhere. But it just drops the mail for the SMTP server to pick it up. Only works if you are hosting your own SMTP server locally.
Right, but it's done at a BASH prompt. I can see where someone would have a hard time describing what they wanted.
-
@DustinB3403 said in Simple Basic eMail providers:
@gjacobse said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
All of the things that you describe are applications. Not email services, just applications. So let me reword what you said, or I think you said, but using modern applications to see if you mean what I think you mean....
You just want email in Outlook, Thunderbird or similar but don't want to have to install the application on your own machine... but you want a VDI desktop somewhere else with the email client on it so that you can just not install it?
Is that REALLY want you want?
I don't believe so. And I believe I see what you are referencing. While I realize there is a difference, you can install MAIL on Linux, and you can then send mail via the BASH to another user. That is all I wish to do, but to someone that is external to my system.
But you can send mail using MAIL, to external recipients.
Nothing special is needed.
Well, mailx, not mail, can send an email to the local email server which in turn can send to someone else.
Just like Outlook or Thunderbird, they are just the clients and give the message to Exchange to send. They don't send themselves.
-
Is the question really "Can I send / receive email without an SMTP server?"
-
@DustinB3403 said in Simple Basic eMail providers:
Is the question really "Can I send / receive email without an SMTP server?"
Locally on the machine, but no where else.
-
@stacksofplates said in Simple Basic eMail providers:
@DustinB3403 said in Simple Basic eMail providers:
Is the question really "Can I send / receive email without an SMTP server?"
Locally on the machine, but no where else.
I know, I was asking for @gjacobse
-
@stacksofplates said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
@stacksofplates said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
@gjacobse said in Simple Basic eMail providers:
@scottalanmiller said in Simple Basic eMail providers:
All of the things that you describe are applications. Not email services, just applications. So let me reword what you said, or I think you said, but using modern applications to see if you mean what I think you mean....
You just want email in Outlook, Thunderbird or similar but don't want to have to install the application on your own machine... but you want a VDI desktop somewhere else with the email client on it so that you can just not install it?
Is that REALLY want you want?
I don't believe so. And I believe I see what you are referencing. While I realize there is a difference, you can install MAIL on Linux, and you can then send mail via the BASH to another user. That is all I wish to do, but to someone that is external to my system.
Nope, still confused. What does "send mail via the BASH" mean to you? I have no idea even what this is supposed to have meant. BASH doesn't interact with email. And it doesn't send things.
I think he means something like echo "my message" | mail -s "subject" [email protected]
That's the mailx application. Not part of BASH. And not installed by default nearly anywhere. But it just drops the mail for the SMTP server to pick it up. Only works if you are hosting your own SMTP server locally.
Right, but it's done at a BASH prompt. I can see where someone would have a hard time describing what they wanted.
It CAN be done at the BASH prompt. That's like saying that Mass Effect is part of the Windows shell because you can click the icon on the desktop from that. If that's part of BASH, the entire system is BASH. BASH becomes a meaningless term for "computer."