ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Simple Basic eMail providers

    Scheduled Pinned Locked Moved IT Discussion
    38 Posts 6 Posters 2.0k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • scottalanmillerS
      scottalanmiller @gjacobse
      last edited by

      @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.

      stacksofplatesS 1 Reply Last reply Reply Quote 0
      • gjacobseG
        gjacobse
        last edited by

        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:~$
        ~~
        scottalanmillerS 1 Reply Last reply Reply Quote 0
        • stacksofplatesS
          stacksofplates @scottalanmiller
          last edited by stacksofplates

          @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]

          scottalanmillerS 1 Reply Last reply Reply Quote 1
          • scottalanmillerS
            scottalanmiller @gjacobse
            last edited by

            @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.

            1 Reply Last reply Reply Quote 0
            • scottalanmillerS
              scottalanmiller @stacksofplates
              last edited by

              @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.

              stacksofplatesS 1 Reply Last reply Reply Quote 0
              • stacksofplatesS
                stacksofplates @scottalanmiller
                last edited by

                @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.

                scottalanmillerS 1 Reply Last reply Reply Quote 0
                • scottalanmillerS
                  scottalanmiller @DustinB3403
                  last edited by

                  @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.

                  1 Reply Last reply Reply Quote 0
                  • DustinB3403D
                    DustinB3403
                    last edited by

                    Is the question really "Can I send / receive email without an SMTP server?"

                    stacksofplatesS scottalanmillerS gjacobseG 3 Replies Last reply Reply Quote 0
                    • stacksofplatesS
                      stacksofplates @DustinB3403
                      last edited by

                      @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.

                      DustinB3403D 1 Reply Last reply Reply Quote 1
                      • DustinB3403D
                        DustinB3403 @stacksofplates
                        last edited by

                        @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

                        1 Reply Last reply Reply Quote 0
                        • scottalanmillerS
                          scottalanmiller @stacksofplates
                          last edited by

                          @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."

                          stacksofplatesS 1 Reply Last reply Reply Quote 0
                          • scottalanmillerS
                            scottalanmiller @DustinB3403
                            last edited by

                            @DustinB3403 said in Simple Basic eMail providers:

                            Is the question really "Can I send / receive email without an SMTP server?"

                            No, by definition "sending email" is just a common term for "an SMTP server to SMTP server transaction". Using an SMTP is literally in the definition of "what is an email."

                            DustinB3403D 1 Reply Last reply Reply Quote 0
                            • scottalanmillerS
                              scottalanmiller @gjacobse
                              last edited by

                              @gjacobse said in Simple Basic eMail providers:

                              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:~$
                              ~~
                              

                              That's the mailx client. It doesn't need a postoffice box server to send, it will talk natively to Postfix or Sendmail. I always use Postfix, I love it.

                              1 Reply Last reply Reply Quote 0
                              • stacksofplatesS
                                stacksofplates @scottalanmiller
                                last edited by stacksofplates

                                @scottalanmiller said in Simple Basic eMail providers:

                                @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."

                                That's not the same at all. Echo is part of BASH. Obviously you don't have to do it that way, but if you use echo and pipe that into mailx, then you've used BASH (at a BASH prompt).

                                1 Reply Last reply Reply Quote 0
                                • gjacobseG
                                  gjacobse @DustinB3403
                                  last edited by

                                  @DustinB3403 said in Simple Basic eMail providers:

                                  Is the question really "Can I send / receive email without an SMTP server?"

                                  No - I know that much.

                                  Looking for a simple basic web based email provider, that isn't Google, O365, Yahoo (puke) etc.

                                  scottalanmillerS StrongBadS 2 Replies Last reply Reply Quote 0
                                  • DustinB3403D
                                    DustinB3403 @scottalanmiller
                                    last edited by

                                    @scottalanmiller 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?"

                                    No, by definition "sending email" is just a common term for "an SMTP server to SMTP server transaction". Using an SMTP is literally in the definition of "what is an email."

                                    But you can send email to the localhost if you really wanted. This can be done without an SMTP server. . . so is an SMTP server, really the definition of email?

                                    scottalanmillerS 1 Reply Last reply Reply Quote 0
                                    • scottalanmillerS
                                      scottalanmiller
                                      last edited by

                                      So major questions are....

                                      • What is the GOAL here? The question was asked down in the weeds. Too many assumptions put into it.
                                      • Why don't you want to install the email server? It's normally there and ready to go by default anyway.
                                      • Why do you want to do this from "someone else's system"?
                                      1 Reply Last reply Reply Quote 0
                                      • scottalanmillerS
                                        scottalanmiller @DustinB3403
                                        last edited by

                                        @DustinB3403 said in Simple Basic eMail providers:

                                        @scottalanmiller 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?"

                                        No, by definition "sending email" is just a common term for "an SMTP server to SMTP server transaction". Using an SMTP is literally in the definition of "what is an email."

                                        But you can send email to the localhost if you really wanted. This can be done without an SMTP server. . . so is an SMTP server, really the definition of email?

                                        Not really, there is no email involved at that point.

                                        DustinB3403D 1 Reply Last reply Reply Quote 0
                                        • scottalanmillerS
                                          scottalanmiller @gjacobse
                                          last edited by

                                          @gjacobse said in Simple Basic eMail providers:

                                          Looking for a simple basic web based email provider, that isn't Google, O365, Yahoo (puke) etc.

                                          Wait, now we are on web based? This is very different and requires a lot more "stuff."

                                          1 Reply Last reply Reply Quote 0
                                          • DustinB3403D
                                            DustinB3403 @scottalanmiller
                                            last edited by

                                            @scottalanmiller said in Simple Basic eMail providers:

                                            @DustinB3403 said in Simple Basic eMail providers:

                                            @scottalanmiller 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?"

                                            No, by definition "sending email" is just a common term for "an SMTP server to SMTP server transaction". Using an SMTP is literally in the definition of "what is an email."

                                            But you can send email to the localhost if you really wanted. This can be done without an SMTP server. . . so is an SMTP server, really the definition of email?

                                            Not really, there is no email involved at that point.

                                            No. . . there is no SMTP server to SMTP server communication involved. It's still mail. . .

                                            scottalanmillerS 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 2 / 2
                                            • First post
                                              Last post