|
Prev: kttsmgr
Next: where is MAKEDEV in slackware 12
From: klee12 on 27 Jun 2008 15:36 Hello, I running Slackware 12.0 with sendmail. I use a cable modem with DHCP. Recently many of my outgoing mail has been returned because of a spam blocker. I was told I should use the cable modem companies mail exchange; some spam blockers are sensitive to DHCP addresseses. I should, he said, use the mail exchange cdptpa-smtpin01.mail.rr.com OK, can anyone tell me how to do that? Thanks in advance King Lee klee12(a)yahoo.com
From: Helmut Hullen on 27 Jun 2008 15:57 Hallo, klee12, Du meintest am 27.06.08: > I running Slackware 12.0 with sendmail. I use a cable modem with > DHCP. Recently many of my outgoing mail has been returned because of > a spam blocker. I was told I should use the cable modem companies > mail exchange; That's nonsense - sorry. Using a cable modem has no special effect on your actually chosen mail host. And this problem is not related to slackware. > some spam blockers are sensitive to DHCP addresseses. > I should, he said, use the mail exchange > cdptpa-smtpin01.mail.rr.com That's much more nonsense. "rr.com" is listed in many lists for spamming. > King Lee > klee12(a)yahoo.com That looks like a yahoo mail account - have you used this account when you got so many returned mail? Viele Gruesse Helmut "Ubuntu" - an African word, meaning "Slackware is too hard for me".
From: Martijn Dekker on 27 Jun 2008 16:49 In article <1c65cbfb-9d82-44d4-a3de-985a6f7585a7(a)i36g2000prf.googlegroups.com>, klee12 <klee12(a)alum.mit.edu> wrote: > I running Slackware 12.0 with sendmail. I use a cable modem with DHCP. > Recently many of my outgoing mail has been returned because of a spam > blocker. I was told I should use the cable modem companies mail > exchange; some spam blockers are sensitive to DHCP addresseses. I > should, he said, use the mail exchange > > cdptpa-smtpin01.mail.rr.com > > OK, can anyone tell me how to do that? In /usr/share/sendmail/cf/cf/sendmail-slackware.mc (or in whatever .mc file you keep the source code to your current configuration), there is a SMART_HOST directive. Uncomment it to use the server you indicated, like this: dnl# Uncomment the line below to send outgoing mail through an external server: define(`SMART_HOST',` cdptpa-smtpin01.mail.rr.com') Then build a .cf file out of that .mc file: ../Build sendmail-slackware.mc Copy the resulting .cf file into /etc/mail/sendmail.cf and then restart sendmail. It should now relay all outgoing mail through the indicated smarthost. Note that there is a comp.mail.sendmail newsgroup. - Martijn
From: Martijn Dekker on 27 Jun 2008 16:51 In article <Agf9GhNjSsB(a)helmuthullen.individual.de>, helmut(a)hullen.de (Helmut Hullen) wrote: > Hallo, klee12, > > Du meintest am 27.06.08: > > > I running Slackware 12.0 with sendmail. I use a cable modem with > > DHCP. Recently many of my outgoing mail has been returned because of > > a spam blocker. I was told I should use the cable modem companies > > mail exchange; > > That's nonsense - sorry. > Using a cable modem has no special effect on your actually chosen mail > host. You misunderstood the problem. Due to the spam situation, most major email providers now block mail that is sent directly by residential (often dynamically assigned) IP addresses, such as those assigned to cable modems. Mail relayed through the ISP's smarthost has a much higher chance of being delivered. - M.
From: loki harfagr on 28 Jun 2008 04:54
On Fri, 27 Jun 2008 22:49:51 +0200, Martijn Dekker wrote: > In article > <1c65cbfb-9d82-44d4-a3de-985a6f7585a7(a)i36g2000prf.googlegroups.com>, > klee12 <klee12(a)alum.mit.edu> wrote: > >> I running Slackware 12.0 with sendmail. I use a cable modem with DHCP. >> Recently many of my outgoing mail has been returned because of a spam >> blocker. I was told I should use the cable modem companies mail >> exchange; some spam blockers are sensitive to DHCP addresseses. I >> should, he said, use the mail exchange >> >> cdptpa-smtpin01.mail.rr.com >> >> OK, can anyone tell me how to do that? > > In /usr/share/sendmail/cf/cf/sendmail-slackware.mc (or in whatever .mc > file you keep the source code to your current configuration), there is a > SMART_HOST directive. Uncomment it to use the server you indicated, like > this: > > dnl# Uncomment the line below to send outgoing mail through an external > server: define(`SMART_HOST',` cdptpa-smtpin01.mail.rr.com') > > Then build a .cf file out of that .mc file: > > ./Build sendmail-slackware.mc > > Copy the resulting .cf file into /etc/mail/sendmail.cf and then restart > sendmail. It should now relay all outgoing mail through the indicated > smarthost. Correct, and if the OP doesn't like the idea to modify and or ./Build there's an even lighter way: $ su - # cd /etc/mail # echo ".<TAB>cdptpa-smtpin01.mail.rr.com" >> mailertable # make # exit (of course the '<TAB>' implies a "real TAB key press :-) Note that if there were existing mailertable rules they'll be maintained, but I doubt there were or the OP wouldn't have posted his questions ;-) |