Re: sendmail configuration - how to route all mail through my ISP

2003-01-26 Thread Shantanu Mahajan
+++ Lorin Lund [freebsd] [26-01-03 10:37 -0700]:
| Date: Sun, 26 Jan 2003 10:37:13 -0700
| From: Lorin Lund [EMAIL PROTECTED]
| Subject: sendmail configuration - how to route all mail through my ISP
| 
| I have v 4.7 of FreeBSD.
| 
| I have a static IP and a domain but I can't send e-mail out directly
| because my ISP blocks it.  I need to send all my e-mail out through my
| ISP.  How do I tell sendmail to route all my mail out through my ISP's
| mail server?
| 
| --
plz. search the mailing archive.  this ques. is discuss quite freq.

Regards,
Shantanu

-- 
Everyone is a genius.  It's just that
some people are too stupid to realize it. 

PGP keyID 137AFD9E
(C7DA 3350 1DEA F371 37DC  D92A F0D4 C2ED 137A FD9E)

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



sendmail configuration - how to route all mail through my ISP

2003-01-25 Thread Lorin Lund
I have v 4.7 of FreeBSD.

I have a static IP and a domain but I can't send e-mail out directly
because my ISP blocks it.  I need to send all my e-mail out through my
ISP.  How do I tell sendmail to route all my mail out through my ISP's
mail server?


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: sendmail configuration - how to route all mail through my ISP

2003-01-25 Thread Chuck Swiger
Lorin Lund wrote:

I have a static IP and a domain but I can't send e-mail out directly
because my ISP blocks it.  I need to send all my e-mail out through my
ISP.  How do I tell sendmail to route all my mail out through my ISP's
mail server?


1) cd /etc/mail
2) edit freebsd.mc and change the following:

dnl Dialup users should uncomment and define this appropriately
dnl define(`SMART_HOST', `your.isp.mail.server')

3) make
4) restart sendmail

-Chuck


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: sendmail configuration - how to route all mail through my ISP

2003-01-25 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-01-25 12:51:11 -0500:
 Lorin Lund wrote:
 I have a static IP and a domain but I can't send e-mail out directly
 because my ISP blocks it.  I need to send all my e-mail out through my
 ISP.  How do I tell sendmail to route all my mail out through my ISP's
 mail server?
 
 1) cd /etc/mail
 2) edit freebsd.mc and change the following:
 
 dnl Dialup users should uncomment and define this appropriately
 dnl define(`SMART_HOST', `your.isp.mail.server')
 
 3) make
 4) restart sendmail

3 + 4: make cf restart

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: sendmail configuration - how to route all mail through my ISP

2003-01-25 Thread Gary W. Swearingen
Chuck Swiger [EMAIL PROTECTED] writes:

 Lorin Lund wrote:
  I have a static IP and a domain but I can't send e-mail out directly
  because my ISP blocks it.  I need to send all my e-mail out through my
  ISP.  How do I tell sendmail to route all my mail out through my ISP's
  mail server?
 
 1) cd /etc/mail
 2) edit freebsd.mc and change the following:
 
 dnl Dialup users should uncomment and define this appropriately
 dnl define(`SMART_HOST', `your.isp.mail.server')
 
 3) make
 4) restart sendmail

And, in FreeBSD 5.0 with no local DNS running, change in submit.mc
this: FEATURE(`msp')
to this: FEATURE(`msp',`[127.0.0.1]')
to avoid long DNS time-out delays.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: sendmail configuration - how to route all mail through my ISP

2003-01-25 Thread dick hoogendijk
On 26 Jan Lorin Lund wrote:
 I have a static IP and a domain but I can't send e-mail out directly
 because my ISP blocks it.  I need to send all my e-mail out through my
 ISP.  How do I tell sendmail to route all my mail out through my ISP's
 mail server?

The smarthost option does what you ask for.
However, I don't get how your ISP can block *outgoing* connects of your
sendmail. Some isp's block incoming connects on 25.

-- 
dick -- http://www.nagual.st/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 4.7 ++ Debian GNU/Linux (Woody)

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: sendmail configuration - how to route all mail through my ISP

2003-01-25 Thread Mark
- Original Message -
From: dick hoogendijk [EMAIL PROTECTED]
To: Lorin Lund [EMAIL PROTECTED]
Cc: freebsd-questions [EMAIL PROTECTED]
Sent: Saturday, January 25, 2003 10:32 PM
Subject: Re: sendmail configuration - how to route all mail through my ISP


 On 26 Jan Lorin Lund wrote:

  I have a static IP and a domain but I can't send e-mail out
  directly because my ISP blocks it.  I need to send all my e-mail out
  through my ISP.  How do I tell sendmail to route all my mail out through
  my ISP's mail server?

 The smarthost option does what you ask for.
 However, I don't get how your ISP can block *outgoing* connects
 of your sendmail. Some isp's block incoming connects on 25.


What he means is, that his ISP blocks all connects to port 25 which are not
directed at their SMTP server. Fairly common practice, these days. Hence, he
cannot send mail out using his own SMTP server.

Many of my users had the same problem: their ISP would not allow them to
connect to my SMTP server. That was easily solved, as I simply opened a
second DaemonPort (sendmail), and offered my users to connect to that
alternate port (in the high 7000+ region). That would allow THEM to bypass
their ISP restriction. My server, of course, still sends out via port 25.

So, setting his smarthost would indeed solve the problem, as his ISP will
allow him to send through their own SMTP server.

- Mark

System Administrator Asarian-host.org

---
If you were supposed to understand it,
we wouldn't call it code. - FedEx


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: sendmail configuration - how to route all mail through my ISP

2003-01-25 Thread dick hoogendijk
On 25 Jan Chris Phillips wrote:
 From: dick hoogendijk [EMAIL PROTECTED]
  However, I don't get how your ISP can block *outgoing* connects of
  your sendmail. Some isp's block incoming connects on 25.
 
 *** FYI ***
 FreeServe, Energis  Demon are doing just this.
 I am informed that this kind of action is due to AOL getting uppety
 with Demon  forcing them to restrict their network simliarly, due to
 AOL customers being SPAMMED by mail that appears to originate from
 Demon Networks...
 
 BT is doing similar to their dynamic IP customers...
 
 Thought this might interest a few of you ;-)

Doesn't sound good. It sucks.
Thought things were bad in Holland, but here some isp's only block
incoming #25 (and that is easely beaten ;-))
And even that give quite a stirr.. and very few therefor do so.

-- 
dick -- http://www.nagual.st/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 4.7 ++ Debian GNU/Linux (Woody)

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message