Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. alexv2

    Bad EHLO response

    How can you tell if it is an open relay? In my access file I only allow relay for the back net and localhost. Does this not work? If not is using something like emix the only way to really shut it down from being an open relay. I was also going to attempt to install sendmail-auth. I think I...
  2. alexv2

    Bad EHLO response

    Ok here is the error I am getting. sender verify fail for <alex@thehobbypit.com>: unrouteable mail domain "thehobbypit.com" From what I read this happens because the server gives an invalid response. I have not set up mail enough to know for sure it is just what I read. Any help would be grand.
  3. alexv2

    Bad EHLO response

    Ok so for the longest time I could not figure out why mail from my domain would get tagged by spam filters. Until I stated tail a mail log file while sending from my domain that was running spamassassin. If you just do a EHLO to my mail server it says a domain must be specified. I am just using...
  4. alexv2

    what is the rule ?

    Sorry I should have clarified. I was just showing the join example in case you want to delimit the file with something else. With join you can put whatever you want in between the values. Common uses of this are to make a tab delimited file which becomes very easy to split on if read in by...
  5. alexv2

    what is the rule ?

    Also in most cases when you have an array and you want to put something between the elements in it to display you should use join. so something like this if you wanted your list printed space delimited. print join(' ', @food);
  6. alexv2

    Perl email script not sending

    Don't know looks like an awful lot of code to just send 2 mails. Have you looked into making it a bit more friendly with mods like Mail::Sendmail. This mod does not use sendmail by the way so you do not have to have sendmail running for it to work. -Alexander www.thehobbypit.com
  7. alexv2

    Mail::Sendmail

    I thought that may be it as well but I tested just a plain text email with just some rambling in it and got the same thing. Even changed the mail account it was sending from to see if that had anything to do with it. -Alexander www.thehobbypit.com
  8. alexv2

    Mail::Sendmail

    Just an update. I have not figured this one out as of yet. Here are the headers that are getting sent out and like I said I am no guru at mail so it looks good to me. Return-Path: <***HIDDEN***@thehobbypit.com> Delivered-To: metapeop-spambob:com-alexv2@spambob.com X-Envelope-To...
  9. alexv2

    using perl imbedded in a .html page...currently using .pl to generate

    Ok a quick (if I can keep it quick) run down of how my site and others that use mod_perl work. http://www.thehobbypit.com/collecting/antiques So in my httpd.conf for apache I have a line that sets the perl handler. It looks like this. <Location /collecting/antiques> SetHandler perl-script...
  10. alexv2

    using perl imbedded in a .html page...currently using .pl to generate

    I do this all the time with my sites but I run them with mod_perl on apache. To have perl executed inside a file that oes not have a script mime type without using something like moe perl would be tricky since the handler would have to know it need to interpret perl code. -Alexander...
  11. alexv2

    Help Installing Mail::Box as user

    Are you installing it from source on local disk or are you trying to use perl -MCPAN to instal it? If you are using the perl -MCPAN deal I would recommend downloading it off cpan.org and running it from local disk. the LD_LIBRARY_PATH is only read if you are running it in the shell you did the...
  12. alexv2

    Help Installing Mail::Box as user

    Try this export LD_LIBRARY_PATH="/home/me/bin/perlmod That will add it to you @INC path.
  13. alexv2

    Mail::Sendmail

    Ok so from all the input I got here I went through and tried a few things. I double checked the host thing and it is not going out as localhost but as thehobbypit.com which is good. So then I looked at other headers it might be using spambob (thanks Trojan) and still nothing. Now the only...
  14. alexv2

    Mail::Sendmail

    I have been programing perl for a long time now and have my new site (www.thehobbypit.com) written in mod_perl. This is the first site I have done that sends email to users and not just to site administrators. Just to clarify I do NOT send spam from my site and never will but all my mail which...

Part and Inventory Search

Back
Top