Re: my cable modem hates splitters

2005-02-11 Thread Levi Sorenson
Before you buy a booster try a smaller spliter, like a two way split. Have one going to your cable modem and one to the 8 way splitter. Also, make sure you aren't useing screw on RJ-11 ends they work a better if they have crimped ends. Levi >>> [EMAIL PROTECTED] 2/11/2005 5:24 PM >>> On Fri, Feb

Re: my cable modem hates splitters

2005-02-11 Thread Roberto Mello
On Fri, Feb 11, 2005 at 12:26:29PM -0700, Steve Dibb wrote: > > Is the connection just getting weakened by the splitter or something, > and I just need a signal booster or what? Or should I just break down > and call Comcast and have them come out here? I've had the same problem. Recently I re

Re: help using /etc/passwd (through pam) with samba

2005-02-11 Thread Corey Edwards
On Fri, 2005-02-11 at 15:50, Spencer Gibb wrote: > fat fingered, > > I found that I need to use pam, this is my pam config, but it doesn't > work. Ideas Have you enabled plaintext passwords? You cannot use pam if you are using encrypted passwords due to NTLM limitations. When set to plaintext pa

Re: help using /etc/passwd (through pam) with samba

2005-02-11 Thread Spencer Gibb
fat fingered, I found that I need to use pam, this is my pam config, but it doesn't work. Ideas On Fri, 11 Feb 2005 17:49:41 -0500, Spencer Gibb <[EMAIL PROTECTED]> wrote: > I want to have samba use /etc/passwd to authenticate users, I'm > looking through the samba docs to > #%PAM-1.0 > # passw

help using /etc/passwd (through pam) with samba

2005-02-11 Thread Spencer Gibb
I want to have samba use /etc/passwd to authenticate users, I'm looking through the samba docs to #%PAM-1.0 # password-migration # auth requisite pam_nologin.so # pam_smbpass is called IF pam_unix succeeds. auth requisite pam_unix.so auth optionalpam_smbpass.so migrate acc

Re: my cable modem hates splitters

2005-02-11 Thread contact
Had the same problem several times. The problem is signal strength. A few questions I have for you: 1. How many cable connections do you have coming out of your walls? 2. Is the Internet and TV signal coming from the same wall outlet? When the cable company installs your high speed connection

Re: my cable modem hates splitters

2005-02-11 Thread Kenneth Burgener
Steve Dibb wrote: Once again, I'm running into some strange problem that hopefully someone has experienced as well. :) Basically -- my cable modem will not get an Internet connection unless there it is the only thing plugged into my cable jack. It first happened about a week or so after Comcast

my cable modem hates splitters

2005-02-11 Thread Steve Dibb
Once again, I'm running into some strange problem that hopefully someone has experienced as well. :) Basically -- my cable modem will not get an Internet connection unless there it is the only thing plugged into my cable jack. It first happened about a week or so after Comcast came out and ins

Re: Cool PHP stuff (almost)

2005-02-11 Thread Mike Heath
On Fri, 2005-02-11 at 10:57 -0700, Barry Roberts wrote: > http://www.phpbeans.com/ > > When there's a phpBeans protocol server for Mono, Python, and Java, > this could be REALLY cool. I think. Has anybody used this yet? If you're looking to implement a multi-tier system with PHP, you should als

Cool PHP stuff (almost)

2005-02-11 Thread Barry Roberts
http://www.phpbeans.com/ When there's a phpBeans protocol server for Mono, Python, and Java, this could be REALLY cool. I think. Has anybody used this yet? Barry Roberts .===. | This has been a P.L.U.G. mailing. | | Don't Fear the Penguin. | | IRC: #ut

Re: seeking laptop cd drive

2005-02-11 Thread David Smith
Hans Fugal wrote: > On Thu, 10 Feb 2005 at 15:02 -0700, David Smith wrote: >> Hans Fugal wrote: >>> seeking laptop cd drive >> No pun intended, right? > Alas, no. Usually my puns are, though. I think in this case it didn't > cross my mind, because seeking is just what this current drive isn't > d

Re: Calling Regex Experts

2005-02-11 Thread Benjamin Schmuhl
On Fri, 2005-02-11 at 09:00 -0700, Dan Wilson wrote: > > So the " blahblah" won't work... the "[^_]" part of the regex is for > something else that is working fine. > > Any other suggestions? How about "(?!\$)blahblah" ?! being a negative lookahead -- Benjamin Schmuhl <[EMAIL PROTECTED]> Min

sendmail, imap, spamassassin, amavis

2005-02-11 Thread jeff
I currently have sendmail, imap, spamassassin, and amavis on a single server. It is having a hard time keeping up, so I am building a new mailserver or mailservers. Has anyone split this up onto different servers to cut down load? Did it help? .===. | This has

Re: Calling Regex Experts

2005-02-11 Thread Dan Wilson
On Fri, 2005-02-11 at 08:54 -0700, Benjamin Schmuhl wrote: > On Fri, 2005-02-11 at 07:18 -0700, Dan Wilson wrote: > > "... blahblah the brown fox jumped over $blahblah ..." > > > > I want to manipulate/replace the 'blahblah', but not the '$blahblah'. > > How would I go about doing this? I've got

Re: mailing in php

2005-02-11 Thread Merrill Oveson
Thanks everyone for your suggestions. I found a very eloquent solution: An example is as follows: Notice the $message = << Hello World! EOF; $headers = "From: $from\r\n"; $headers .= "Content-type: text/html\r\n"; $success = mail($to, $subject, $me

Re: Calling Regex Experts

2005-02-11 Thread Benjamin Schmuhl
On Fri, 2005-02-11 at 07:18 -0700, Dan Wilson wrote: > "... blahblah the brown fox jumped over $blahblah ..." > > I want to manipulate/replace the 'blahblah', but not the '$blahblah'. > How would I go about doing this? I've got the following regex, but it > doesn't do the trick: > > "/(([^\$])bl

Re: Calling Regex Experts

2005-02-11 Thread Tyler Bird
Dan, I don't know if your using php, but perl had a word boundary \b you could use and I don't know why you have ([^_]) at the end of your regex considering what your trying to match. try: /(\b[^\$]blahblah)/gi Tyler Tyler Bird UVSC - Continuing Education >>> [EMAIL PROTECTED] 02/11/05 7:18

Calling Regex Experts

2005-02-11 Thread Dan Wilson
Ok... so I claim to have a working knowledge or regex, but I cannot seem to get this one right. Here's the problem: I have text which contains multiple values that I want to manipulate. Let's say it looks something like this: "... blahblah the brown fox jumped over $blahblah ..." I want to mani