trying to get Microsoft ICW to work

2003-02-20 Thread Richard Bailey
I have been trying to get Microsoft's Internet Connection Wizard to work
with one of our Debian servers.
I started with the perl scripts provided by microsoft and have customized
them to gather the information we need
and corrected the bugs in the original scripts.

The problem I am seeing is when I have selected a POP and click next, the
system disconnects from the internet and
displays an error that it cannot contact the server.

Has anyone had any luck getting this wonderful setup from Microsoft to work
or am I just wasting my time fighting it ???

Technical  Administrator
Tele-NET


---
Tele-NET Internet Services  http://www.tele-net.net
Yerington, Nv 89447
(775)463-3737(main)
(775)463-2355(secondary)

---



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Setting user passwords non-interactively

2002-05-17 Thread Richard Bailey


- Original Message -
From: "Gene Grimm" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 17, 2002 10:42 AM
Subject: Re: Setting user passwords non-interactively


> > i think chpasswd is what your looking for.
> > chpasswd user:pass
> >
> > on woody atleast its included in the passwd package
> >
> > > im wondering if there is any non-interactive way to set a user's
> > > password...i need to do it through a scriptplease
>
> Actually, I use Perl script with a shell system call to 'usermod' or
> 'useradd' with the '-p' option, however you have to remember to crypt the
> password - crypt($passwd,$seed) - in the Perl script.

I used this in a perl script to set up a temp user on a system and set the
password for it:

$groupadd="groupadd $tempuser";
system("$groupadd\n");
$syscall = "useradd -m -c \"$firstname $lastname,,,\($ac\)$phone\" -e
\"$datef\" -g $tempuser $tempuser";
system("$syscall");
$chngpasswd= "echo $tempuser\:$password|chpasswd";
system("$chngpasswd\n");


works great


Richard



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: moving mail system from one ISP to another

2002-01-15 Thread Richard Bailey
I just dealt with this for a single customer, but I think you could hack a
quick script to do it
for a number of people.  I think you may need root access on the old mail
server for it to work.
I used a command like the following to forward all of her mail after I had
added her to aliases to the new
address.

cat /var/spool/mail/userbox|mail -s "forward of your mail"
[EMAIL PROTECTED]

She reported that she got all of her mail as individual messages.

I hope this helps....

Richard Bailey
Tele-NET

- Original Message -
From: <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, January 15, 2002 5:51 AM
Subject: Re: moving mail system from one ISP to another


> On Tue, Jan 15, 2002 at 01:17:09PM +0100, Olivier MACCHIONI wrote:
> > >Depending on the MTA you are using there are ways of doing the
forwarding,
> > >with
> > >exim you can add a line to the bottom of the exim.conf file that tells
it
> > >where
> > >to redirect the mail to, its quite well documented in the exim info
pages.
> > >With postfix you can use the transports file to redirect the mail. Not
sure
> > >about other MTAs, hope that helps.
> >
> > Could help a lot... The problem is to retreive the mail which has
already
> > been delivered to the "old" mailboxes.
> >
> > I don't know of any good way to do that for a large number of POP
accounts
> > and heterogenous mail storage systems.
> >
> > If you have a complete list of login / passwords you can use fetchmail
to
> > get the mail from the old accounts and send it to the new ones.
> >
> > If you don't have such a list some tcpflow on port 110 with some
filtering
> > could give you most of the accounts (hopefully not too many people are
on
> > vacations and don't check their mails).
> >
> > Good luck
> >
> > Olivier
>
> Hrm. Ahh. That's always "fun". Now, If you've got time you could use mutt
as
> root, open the mailboxes one at a time, tag the whole lot, and bounce them
to
> the new address... (or the old address if that's now directed else where).
Time
> consuming, yes. But its the only way I can think of doing it at the moment
:/
>
> Best of luck,
>
> --
> Brett Parker
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]
>





Re: moving mail system from one ISP to another

2002-01-15 Thread Richard Bailey

I just dealt with this for a single customer, but I think you could hack a
quick script to do it
for a number of people.  I think you may need root access on the old mail
server for it to work.
I used a command like the following to forward all of her mail after I had
added her to aliases to the new
address.

cat /var/spool/mail/userbox|mail -s "forward of your mail"
newaddress@newdomain

She reported that she got all of her mail as individual messages.

I hope this helps....

Richard Bailey
Tele-NET

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 15, 2002 5:51 AM
Subject: Re: moving mail system from one ISP to another


> On Tue, Jan 15, 2002 at 01:17:09PM +0100, Olivier MACCHIONI wrote:
> > >Depending on the MTA you are using there are ways of doing the
forwarding,
> > >with
> > >exim you can add a line to the bottom of the exim.conf file that tells
it
> > >where
> > >to redirect the mail to, its quite well documented in the exim info
pages.
> > >With postfix you can use the transports file to redirect the mail. Not
sure
> > >about other MTAs, hope that helps.
> >
> > Could help a lot... The problem is to retreive the mail which has
already
> > been delivered to the "old" mailboxes.
> >
> > I don't know of any good way to do that for a large number of POP
accounts
> > and heterogenous mail storage systems.
> >
> > If you have a complete list of login / passwords you can use fetchmail
to
> > get the mail from the old accounts and send it to the new ones.
> >
> > If you don't have such a list some tcpflow on port 110 with some
filtering
> > could give you most of the accounts (hopefully not too many people are
on
> > vacations and don't check their mails).
> >
> > Good luck
> >
> > Olivier
>
> Hrm. Ahh. That's always "fun". Now, If you've got time you could use mutt
as
> root, open the mailboxes one at a time, tag the whole lot, and bounce them
to
> the new address... (or the old address if that's now directed else where).
Time
> consuming, yes. But its the only way I can think of doing it at the moment
:/
>
> Best of luck,
>
> --
> Brett Parker
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]
>



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: ISDN & MRTG (or similar)

2000-09-05 Thread Richard Bailey
Yes, Run MRTG under linux, It is in the distribution.

Richard

- Original Message -
From: "Robert Davidson" <[EMAIL PROTECTED]>
To: 
Sent: Monday, September 04, 2000 7:57 PM
Subject: ISDN & MRTG (or similar)


>
> Hi Guys,
>
> I have a linux box with 2 NETjet ISDN cards in it maintaining links to
> two different ISP's.
>
> Previously they were running on our PortMaster 3 and we were using MRTG
> to monitor them.  Is there a way we can monitor them with MRTG on the
> linux box, or is there some other program that can do it, and
> preferably publish it to a webpage or into a file?
>
> Regards,
> Robert Davidson.
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]
>




Re: ISDN & MRTG (or similar)

2000-09-05 Thread Richard Bailey

Yes, Run MRTG under linux, It is in the distribution.

Richard

- Original Message -
From: "Robert Davidson" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, September 04, 2000 7:57 PM
Subject: ISDN & MRTG (or similar)


>
> Hi Guys,
>
> I have a linux box with 2 NETjet ISDN cards in it maintaining links to
> two different ISP's.
>
> Previously they were running on our PortMaster 3 and we were using MRTG
> to monitor them.  Is there a way we can monitor them with MRTG on the
> linux box, or is there some other program that can do it, and
> preferably publish it to a webpage or into a file?
>
> Regards,
> Robert Davidson.
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]
>


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: user server

2000-05-15 Thread Richard Bailey
Wayne,
Apache does this, the user web pages need to be in a public_html
subfolder of the user home directory.

Richard
Tele-NET webmaster

- Original Message -
From: "Wayne Sitton" <[EMAIL PROTECTED]>
To: 
Sent: Monday, May 15, 2000 3:21 PM
Subject: user server


> I have recently acquired a domain with quite alot of user webpages.  The
> server it was originnally on was a FreeBSD box.  It placed the users under
a
> strange directoty path.  For example the url
> http://home.techgod.net/~user  on the the server it goes to
> /server/ftp/u/user/html
> in other words after the ftp directory, the path goes to the first letter
of
> the username and then the username, and then an html folder.  I have to
move
> this to my own server.  I use Debian 2.1r4.  Instead of keeping the
> Directory structure, I moved all users out of the alfabetical directory
> structure, and put them all under /home.  I ran a password convert, and
all
> the users can log in and access their ftp.  Now what I can't seem to get
> done is to get apache to recognize that /~username goes to
> /home/username/html
> Can anyone help me get this done easily?
>
>
> Wayne
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]
>