Networking Forums

Networking Forums > Computer Networking > Linux Networking > Can I by-pass my ISP to email?

Reply
Thread Tools Display Modes

Can I by-pass my ISP to email?

 
 
NoHtmlMailsPlease
Guest
Posts: n/a

 
      08-11-2011, 06:54 PM
The user interface and text-handling facilities of my
LinuxETHoberon is so nice, that I hate to have to paste
the text to something like `evolution` to send it,
especially since I fetch mail by LinuxETHoberon.

The first time my ISP introduced sendAuthorisation,
I modified my LinuxETHoberon to handle it. Then a
few years later the ISP used a different type of
sendAuthorisation. And I'm not interested to
modify my code again. The novelty had gone.

Some one said "use sendmail or equivalent to
bypass your ISP's mail-server".
Which sounds feasible.
If I've got an inet connection, I can ping any IP.
and telnet any IP. So I can talk to the recipient's
mail-server.

During the week I've only got access to a wireless
connection, for which I had to buy a win7 netbook,
because the wireless-terminal has no linux driver.
So there I can reluctantly use win7's emailer crap.

Since Win7 can telnet, I'd like to experiment, first just
telneting to my own gmail & non-gmail accounts.
And if that works I'll see about linux-sendmail to
bypass my weekend land-line ISP.

How would I do that?

OK, it's easy to telnet my non-gmail pop & smtp, since
I know the IPs, and have logs of doing it previously.
But how would I telnet my gmail account?
Or even telnet the gmail server?

Although apparently sendmail is a pain to setup,
perhaps that's easier than first trying some DNS to
get the IP of the email of the recipient?

Can I by-pass my ISP to email?

==TIA

 
Reply With Quote
 
 
 
 
Peter Köhlmann
Guest
Posts: n/a

 
      08-13-2011, 02:17 PM
NoHtmlMailsPlease wrote:

>
> During the week I've only got access to a wireless
> connection, for which I had to buy a win7 netbook,
> because the wireless-terminal has no linux driver.


Pull another one.

This total fabrication will never fly.

And wehn you claim something about linux, make sure the next time that you
have actually seen a linux machine running

Don't you wintrolls have a life?
 
Reply With Quote
 
Grant Edwards
Guest
Posts: n/a

 
      08-13-2011, 03:30 PM
On 2011-08-11, NoHtmlMailsPlease <(E-Mail Removed)> wrote:
> The user interface and text-handling facilities of my
> LinuxETHoberon is so nice, that I hate to have to paste
> the text to something like `evolution` to send it,
> especially since I fetch mail by LinuxETHoberon.
>
> The first time my ISP introduced sendAuthorisation,
> I modified my LinuxETHoberon to handle it. Then a
> few years later the ISP used a different type of
> sendAuthorisation. And I'm not interested to
> modify my code again. The novelty had gone.
>
> Some one said "use sendmail or equivalent to
> bypass your ISP's mail-server".
> Which sounds feasible.


Short answer: it isn't.

Long answer: it is _if_

1) You've got a static IP address, and

2) You set up an MX record for the address from which you're sending.

3) Nobody else at your ISP ever does something dumb and get your IP
address range blacklisted.

> If I've got an inet connection, I can ping any IP.
> and telnet any IP. So I can talk to the recipient's
> mail-server.


Many/most e-mail servers will ignore mail sent from dynamic IP
addresses, from IP addresses that don't belong to machines pointed to
by MX records, from IP addresses in blacklisted ranges that contain a
lot of 'bots, and so on.

I used to use qmail (a sendmail replacement) configure to send mail
directly to the destination. It stopped working consistently years
and years ago because of restrictions many servers are placing on
inbound mail.

> Can I by-pass my ISP to email?


Yes. You don't need to use your ISP, but you do need to use a "real"
relay server that the rest of the world trusts. It's possible, but
difficult to set one up yourself. It's easier to use Google's (though
there are issues with using arbitrary "from" addresses). You could
also sign up for an account with some other provider that provides
e-mail service (panix.com, et.).

--
Grant



 
Reply With Quote
 
Stefan Schmiedl
Guest
Posts: n/a

 
      08-13-2011, 05:30 PM
On Thu, 11 Aug 2011 20:54:54 +0200
"NoHtmlMailsPlease" <(E-Mail Removed)> wrote:

> LinuxETHoberon
> ...
> Some one said "use sendmail or equivalent to
> bypass your ISP's mail-server".
> Which sounds feasible.


If you are on a linux box, you also have the option
to offload the authentication to a local MTA.

I'm using ssmtp on several gentoo boxes to this effect.

If your system can't deal with calling sendmail directly,
but requires a SMTP connection, you can still use something
like postfix, exim or sendmail, listening on 127.0.0.1 only,
to receive unauthenticated messages from localhost only,
while using your ISP's smarthost/mailhub with authentication
to get the mail off your box.

HTH,
s.

 
Reply With Quote
 
Pascal Hambourg
Guest
Posts: n/a

 
      08-13-2011, 05:31 PM
Hello,

Grant Edwards a écrit :
>
> Many/most e-mail servers will ignore mail sent [...]
> from IP addresses that don't belong to machines pointed to
> by MX records,


How do you know that somewhere in the DNS space there is an MX record
which points to a host name which points to a given IP address ?
 
Reply With Quote
 
Jorgen Grahn
Guest
Posts: n/a

 
      08-13-2011, 08:49 PM
On Thu, 2011-08-11, NoHtmlMailsPlease wrote:
> The user interface and text-handling facilities of my
> LinuxETHoberon is so nice, that I hate to have to paste
> the text to something like `evolution` to send it,
> especially since I fetch mail by LinuxETHoberon.


What's "a LinuxETHoberon"? I remember hearing about the Oberon
environment, but that was 20 years ago. I will assume below that it
is (among other things) a mail client.

> The first time my ISP introduced sendAuthorisation,
> I modified my LinuxETHoberon to handle it. Then a
> few years later the ISP used a different type of
> sendAuthorisation. And I'm not interested to
> modify my code again. The novelty had gone.


Your only realistic options are

- Your mail program relays mail to your ISP's server. Then it has to
support whatever unfortunate authentication mechanisms your ISP
chooses to use. (Mine chooses none: it relays all mail which comes
from inside the ISP's network.)

- Your mail program can feed mail into the MTA of your Linux system
(sendmail, postfix, exim ...) and let that one be resposible for
relaying through the ISP's server. Any decent MTA has support for
your ISP's authentication mechanism.

If "LinuxETHoberon" cannot do either of those and you don't want to
hack it, you're out of luck.

/Jorgen

--
// Jorgen Grahn <grahn@ Oo o. . .
\X/ snipabacken.se> O o .
 
Reply With Quote
 
NoHtmlMailsPlease
Guest
Posts: n/a

 
      08-14-2011, 06:45 AM


"Dave {Reply Address In.Sig}" <noone$$@llondel.org> wrote in message
news:9rcih8-(E-Mail Removed)...
> NoHtmlMailsPlease wrote:
>
>>
>> Although apparently sendmail is a pain to setup,
>> perhaps that's easier than first trying some DNS to
>> get the IP of the email of the recipient?
>>
>> Can I by-pass my ISP to email?
>>

> The acid test is often whether you're on a dynamic or static IP address.
> Many mail servers won't accept traffic from dynamic IP addresses outside
> their own allocation. I run sendmail on a static IP address and don't have
> any problem.


I get an IP dynamically

> Some ISPs also block port 25 outbound from their own address
> space, or intercept it and redirect it to their own servers.
> --

Does that mean that when I telnet <IP> : port 25,
or any IPort
my ISP might not allow it?
That would mean that my basic assumption that I can ping anything is wrong.
When I previously extended my mailer to handle SendAuthorisation, I used
telnet repeatedly to test it -- obviously; and got no indication of
restrictions
on telnet -- yet.
What does an ISP mean that they can "provide you with a basic 8nix account"?

Thanks,

Chris Glur.


 
Reply With Quote
 
NoHtmlMailsPlease
Guest
Posts: n/a

 
      08-14-2011, 07:11 AM


"Stefan Schmiedl" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> On Thu, 11 Aug 2011 20:54:54 +0200
> "NoHtmlMailsPlease" <(E-Mail Removed)> wrote:
>
>> LinuxETHoberon
>> ...
>> Some one said "use sendmail or equivalent to
>> bypass your ISP's mail-server".
>> Which sounds feasible.

>
> If you are on a linux box, you also have the option
> to offload the authentication to a local MTA.
>

Yes I started investigating that possibility, and afterwards I even
noticed from the code that OberonV4 [less preferred than LEO for me]
does pass the text to `sendmail`.

> I'm using ssmtp on several gentoo boxes to this effect.
>
> If your system can't deal with calling sendmail directly,
> but requires a SMTP connection, you can still use something
> like postfix, exim or sendmail, listening on 127.0.0.1 only,
> to receive unauthenticated messages from localhost only,
> while using your ISP's smarthost/mailhub with authentication
> to get the mail off your box.
>

I'd have to to look in my linux-files for my log-details, but
I failed to confirm:
1. LEO can communicate with 127.0.0.1
2. 127.0.0.1 can communicate with sendmail

OK, now I remember !
LEO, altho 'running on Linux [being a port of standAlone
Oberon] doesn't use the *nix tcp-stack. It's got a `ppp` module
which talks to a serial-port module which talks to the dial-up modem.

The whole intention of 'hiding the complexity' has succeeded in
fooling me.

As a great believer in 'successive refinement' I note that by just
pasteing/importing my LEO composed text into the <what's its name>
mailer, I'm simulating <sending it to a MTA> so that should work.

The problem is that I don't get any feed-back from `sendmail` and
my connection/testing costs are high.

> HTH,
> s.
>

 
Reply With Quote
 
NoHtmlMailsPlease
Guest
Posts: n/a

 
      08-14-2011, 07:52 AM


"Jorgen Grahn" <grahn+(E-Mail Removed)> wrote in message
news:slrnj4doqg.gtj.grahn+(E-Mail Removed). ..
> On Thu, 2011-08-11, NoHtmlMailsPlease wrote:
>> The user interface and text-handling facilities of my
>> LinuxETHoberon is so nice, that I hate to have to paste
>> the text to something like `evolution` to send it,
>> especially since I fetch mail by LinuxETHoberon.

>
> What's "a LinuxETHoberon"? I remember hearing about the Oberon
> environment, but that was 20 years ago. I will assume below that it
> is (among other things) a mail client.
>

In 199x when my ISP said that I couldn't use Win3.1 and would have
to buy W95, I said screw-you and looked at linux and Oberon.
Oberon [without the gadgets extension] could be installed from
one 1M4:fd0 and contained pop3, smtp ..etc. for X86.
Oberon the descendant of Modula ..Pascal was developed by Wirth
at the top tech-institute in Switzerland. It's got a brilliant user
interface, which acmelan9 -> wilyublicDomain copied somewhat.

>> The first time my ISP introduced sendAuthorisation,
>> I modified my LinuxETHoberon to handle it. Then a
>> few years later the ISP used a different type of
>> sendAuthorisation. And I'm not interested to
>> modify my code again. The novelty had gone.

>
> Your only realistic options are
>
> - Your mail program relays mail to your ISP's server. Then it has to
> support whatever unfortunate authentication mechanisms your ISP
> chooses to use. (Mine chooses none: it relays all mail which comes
> from inside the ISP's network.)
>
> - Your mail program can feed mail into the MTA of your Linux system
> (sendmail, postfix, exim ...) and let that one be resposible for
> relaying through the ISP's server. Any decent MTA has support for
> your ISP's authentication mechanism.
>

OK, that's what I'd like to try. But as explained, I can't feed into the
'stack'.
I have to feed in the plain-text, to some linux-system.
What I need is a testing procedure:
1. feedback/confirmation that 'linux-system' has correctly received the
various fields: to, from, subject, mail-body.
2. feedback/confirm could be if/when I receive self-mailed to my gmail.

BTW I used to Cc from ISP-accountA to ISP-accountB, as a self-check.
But after the ISP changed its SendAuth protocol these self-checks falsely
confirmed. Only after months of failed self-check to my EXTERNAL gmail,
did I realise that <you know what>.

> If "LinuxETHoberon" cannot do either of those and you don't want to
> hack it, you're out of luck.
>

So now that I've only got access to my landline occasionally.
I had to buy a Win-capable device to access the available wireless
connection.
So in the end M$ screwed me.

> /Jorgen
>



 
Reply With Quote
 
unruh
Guest
Posts: n/a

 
      08-14-2011, 11:41 AM
On 2011-08-11, NoHtmlMailsPlease <(E-Mail Removed)> wrote:
> The user interface and text-handling facilities of my
> LinuxETHoberon is so nice, that I hate to have to paste
> the text to something like `evolution` to send it,
> especially since I fetch mail by LinuxETHoberon.
>
> The first time my ISP introduced sendAuthorisation,
> I modified my LinuxETHoberon to handle it. Then a
> few years later the ISP used a different type of
> sendAuthorisation. And I'm not interested to
> modify my code again. The novelty had gone.
>
> Some one said "use sendmail or equivalent to
> bypass your ISP's mail-server".
> Which sounds feasible.
> If I've got an inet connection, I can ping any IP.
> and telnet any IP. So I can talk to the recipient's
> mail-server.


So you can send email to any machine. Whether they will accept it is
another matter. Some systems are picky as to whom they accept mail from.

HOwever receiveing mail is another matter. If you have a permanant IP
address and an always on machine than you can publish your email address
using that address as the MX entry in someone's dns tables to receive
mail Otherwise you are going to have someone else receive you mail for
you, and you pick it up somehow (as you do not with your ISP).


>
> During the week I've only got access to a wireless
> connection, for which I had to buy a win7 netbook,
> because the wireless-terminal has no linux driver.


No idea what this means. The linux driver is needed for th ewireless
card on your laptop/netbook. I have no idea what a "wireless-terminal"
is.


> So there I can reluctantly use win7's emailer crap.
>
> Since Win7 can telnet, I'd like to experiment, first just
> telneting to my own gmail & non-gmail accounts.
> And if that works I'll see about linux-sendmail to
> bypass my weekend land-line ISP.
>
> How would I do that?
>
> OK, it's easy to telnet my non-gmail pop & smtp, since
> I know the IPs, and have logs of doing it previously.
> But how would I telnet my gmail account?
> Or even telnet the gmail server?
>
> Although apparently sendmail is a pain to setup,
> perhaps that's easier than first trying some DNS to
> get the IP of the email of the recipient?


Most linux distros use postfix instead of sendmail


>
> Can I by-pass my ISP to email?


Yes. See above.

>
>==TIA
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
A solution about email spam and email reliability Ioannis Vranos Linux Networking 20 06-11-2009 12:24 PM
A solution about email spam and email reliability Ioannis Vranos Home Networking 2 06-05-2009 12:06 PM
email extractor , site , solutions , email based marketing , email marketing solution , email extractor , newsletter software , mass email , e-mail marketing , email marketing solutions , bulk email software , web advertising , email marketing , mark Nuclear Incorporation. www.nuclear-inc.com Broadband 0 04-05-2007 08:38 PM
email extractor , site , solutions , email based marketing , email marketing solution , email extractor , newsletter software , mass email , e-mail marketing , email marketing solutions , bulk email software , web advertising , email marketing , mark Nuclear Incorporation. www.nuclear-inc.com Home Networking 0 04-05-2007 08:31 PM
Plusnet email is dreadful, need email provider TX2 Broadband 31 10-09-2003 08:52 PM



1 2 3 4 5 6 7 8 9 10 11