From owner-freebsd-isp Sun Jun 9 9:28: 6 2002 Delivered-To: freebsd-isp@freebsd.org Received: from boreas.primus.ca (mail.tor.primus.ca [216.254.136.21]) by hub.freebsd.org (Postfix) with ESMTP id 1528137B40C for ; Sun, 9 Jun 2002 09:28:01 -0700 (PDT) Received: from dialin-140-131.hamilton.primus.ca ([209.90.140.131]) by boreas.primus.ca with esmtp (Exim 3.33 #16) id 17H5M3-0005qV-0A for freebsd-isp@FreeBSD.ORG; Sun, 09 Jun 2002 12:15:47 -0400 Date: Sun, 9 Jun 2002 12:27:50 -0400 (EDT) From: Jason Hunt X-X-Sender: leth@lethargic.dyndns.org To: freebsd-isp@FreeBSD.ORG Subject: Re: syslog-ng In-Reply-To: <001701c20e3c$a8f74840$fef0da42@caz> Message-ID: <20020609122107.C83894-100000@lethargic.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 7 Jun 2002, Jeremy Buckner wrote: > Ok on that note how do you get syslogd to let remote devices log to it? I > noticed that mine starts with the -s switch and I can't seem to find where > to edit that so it allows my router in... I'm sure it's easy, just haven't > found it yet. > Put syslogd_flags="" in /etc/rc.conf. You can leave the options blank or use the -a flag for a bit more security. Check syslogd(8) for details. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Sun Jun 9 16:33:53 2002 Delivered-To: freebsd-isp@freebsd.org Received: from aurora.siteplus.com (aurora.siteplus.com [66.129.2.160]) by hub.freebsd.org (Postfix) with ESMTP id CB3A237B407 for ; Sun, 9 Jun 2002 16:33:51 -0700 (PDT) Received: from veager.jwweeks.com (pcp01076331pcs.midval01.tn.comcast.net [68.59.219.194]) by aurora.siteplus.com (8.9.3/8.9.3) with ESMTP id TAA08153 for ; Sun, 9 Jun 2002 19:33:54 -0400 (EDT) (envelope-from jim@jwweeks.com) Date: Sun, 9 Jun 2002 19:33:28 -0400 (EDT) From: jim To: freebsd-isp@freebsd.org Subject: suexec question Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hey guys, I have just finished building and apache-modssl/php_4/frontpage/suexec server (DSO frontpage) from ports and everything works perfect. Well almost, enabling suexec within a frontpage virtual host breaks frontpage connectivity. Does anyone have experience with this? BTW, some of you may remember the summary I wrote sometime ago on building this combination from ports. With a few variations this can still easily be done. If anyone is interested in the details let me know. Thanks, -- Jim Weeks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Sun Jun 9 21:16:28 2002 Delivered-To: freebsd-isp@freebsd.org Received: from aurora.siteplus.com (aurora.siteplus.com [66.129.2.160]) by hub.freebsd.org (Postfix) with ESMTP id 67EEA37B406 for ; Sun, 9 Jun 2002 21:16:22 -0700 (PDT) Received: from veager.jwweeks.com (pcp01076331pcs.midval01.tn.comcast.net [68.59.219.194]) by aurora.siteplus.com (8.9.3/8.9.3) with ESMTP id AAA13117; Mon, 10 Jun 2002 00:16:04 -0400 (EDT) (envelope-from jim@jwweeks.com) Date: Mon, 10 Jun 2002 00:15:40 -0400 (EDT) From: jim To: Tim McCullagh Cc: freebsd-isp@freebsd.org Subject: Re: suexec question In-Reply-To: <004301c21016$2e92e920$6500a8c0@halenet.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Ok, I have had several requests for this info so here it goes. cd /usr/ports/misc/compat3 make && make install && make clean cd /usr/local # Fetch fp_install.sh and latest Frontpage extensions from, http://www.microsoft.com/frontpage/ tar xzvf fp50.freebsd.tar.Z cd /usr/ports/apache13-modssl # Obtain latest apache patch from, # http://www.rtr.com/fpsupport/fp-patch-apache_1.3.22.htm # Copy the patch to /usr/ports/apache13-modssl/files/ and # rename to patch-aj (/usr/ports/apache13-modssl/files/patch-aj) # Edit Makefile and add the following lines right before, # the line (--enable-module=define). Leave out the suexec part # if you don't want it installed. --add-module=${FILESDIR}/mod_frontpage.c \ --enable-module=frontpage \ --enable-suexec \ --suexec-docroot=/usr/local/www/ --suexec-caller=www \ --suexec-uidmin=1000 \ --suexec-gidmin=1000 \ --suexec-logfile=/var/log/httpd-suexec.log \ --suexec-userdir=www \ --suexec-safepath=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin \ cp /usr/ports/www/apache13-fp/files/mod_frontpage.c \ /usr/ports/apache13-modssl/files/mod_frontpage.c make && make install && make clean cd /usr/ports/www/php_4 make && make install && make clean # Edit httpd.conf, adding the following lines, AddType application/x-httpd-php .php .php3 AddType application/x-httpd-php-source .phps .php3s # Change "AllowOverride None" to, "AllowOverride All" # Make any other appropriate changes. /usr/local/etc/rc.d/apache.sh start Now you can install the frontpage extensions by running, /usr/local/frontpage/version5.0/bin/owsadm.exe All the configuration options for "owsadm.exe" can be found on the Microsoft website, but I usually add extensions with something like this, /usr/local/frontpage/version5.0/bin/owsadm.exe -o install \ -u username -xu username -xg usergroup -pw password -p 80 \ -m domainname.com -t apache-fp --s /usr/local/etc/apache/httpd.conf \ -a administrators If I have left anything out please let me know! Enjoy, -- Jim Weeks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Sun Jun 9 21:49:25 2002 Delivered-To: freebsd-isp@freebsd.org Received: from aurora.siteplus.com (aurora.siteplus.com [66.129.2.160]) by hub.freebsd.org (Postfix) with ESMTP id 7065637B406 for ; Sun, 9 Jun 2002 21:49:19 -0700 (PDT) Received: from veager.jwweeks.com (pcp01076331pcs.midval01.tn.comcast.net [68.59.219.194]) by aurora.siteplus.com (8.9.3/8.9.3) with ESMTP id AAA13708 for ; Mon, 10 Jun 2002 00:49:19 -0400 (EDT) (envelope-from jim@jwweeks.com) Date: Mon, 10 Jun 2002 00:48:54 -0400 (EDT) From: jim To: freebsd-isp@FreeBSD.ORG Subject: Re: suexec question (apache/fp/php4) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org One side note and correction. If you plan on using fp_install.sh to extract the tarball and install/upgrade extensions after apache is installed, the script will ask to overwrite your existing httpd. Answer yes to this question. The script will copy your newly compiled httpd to /usr/local/sbin/httpd.orig. Just copy httpd.orig over the httpd that was installed by the script. The correction is neer the end where my heavy handed, "--s /usr/local/etc/apache/httpd.conf" should be, "-s /usr/local/etc/apache/httpd.conf" -- Jim Weeks On Mon, 10 Jun 2002, jim wrote: > Ok, > > I have had several requests for this info so here it goes. > > cd /usr/ports/misc/compat3 > make && make install && make clean > > cd /usr/local > # Fetch fp_install.sh and latest Frontpage extensions from, > http://www.microsoft.com/frontpage/ > tar xzvf fp50.freebsd.tar.Z > > cd /usr/ports/apache13-modssl > # Obtain latest apache patch from, > # http://www.rtr.com/fpsupport/fp-patch-apache_1.3.22.htm > # Copy the patch to /usr/ports/apache13-modssl/files/ and > # rename to patch-aj (/usr/ports/apache13-modssl/files/patch-aj) > # Edit Makefile and add the following lines right before, > # the line (--enable-module=define). Leave out the suexec part > # if you don't want it installed. > > --add-module=${FILESDIR}/mod_frontpage.c \ > --enable-module=frontpage \ > --enable-suexec \ > --suexec-docroot=/usr/local/www/ > --suexec-caller=www \ > --suexec-uidmin=1000 \ > --suexec-gidmin=1000 \ > --suexec-logfile=/var/log/httpd-suexec.log \ > --suexec-userdir=www \ > --suexec-safepath=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin \ > > cp /usr/ports/www/apache13-fp/files/mod_frontpage.c \ > /usr/ports/apache13-modssl/files/mod_frontpage.c > make && make install && make clean > > cd /usr/ports/www/php_4 > make && make install && make clean > > # Edit httpd.conf, adding the following lines, > > AddType application/x-httpd-php .php .php3 > AddType application/x-httpd-php-source .phps .php3s > > # Change "AllowOverride None" to, "AllowOverride All" > # Make any other appropriate changes. > > /usr/local/etc/rc.d/apache.sh start > > Now you can install the frontpage extensions by running, > /usr/local/frontpage/version5.0/bin/owsadm.exe > > All the configuration options for "owsadm.exe" can be found on the > Microsoft website, but I usually add extensions with something like this, > > /usr/local/frontpage/version5.0/bin/owsadm.exe -o install \ > -u username -xu username -xg usergroup -pw password -p 80 \ > -m domainname.com -t apache-fp --s /usr/local/etc/apache/httpd.conf \ > -a administrators > > If I have left anything out please let me know! > > Enjoy, > -- > Jim Weeks > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-isp" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Mon Jun 10 2:27: 4 2002 Delivered-To: freebsd-isp@freebsd.org Received: from opium.co.za (opium.co.za [196.34.165.210]) by hub.freebsd.org (Postfix) with ESMTP id D407137B401 for ; Mon, 10 Jun 2002 02:27:01 -0700 (PDT) Received: from mark (helo=localhost) by opium.co.za with local-esmtp (Exim 3.34 #1 (Debian)) id 17HLRw-0004Wd-00 for ; Mon, 10 Jun 2002 11:26:56 +0200 Date: Mon, 10 Jun 2002 11:26:56 +0200 (SAST) From: Mark Bojara X-X-Sender: mark@opium.co.za To: freebsd-isp@freebsd.org Subject: dynamic mrtg graphs Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Greetings, I am looking for a tool that can generate graphs per ip address. I know this is possible by writing a custom script to read it from "ipfw count" but I am looking for a tool that will dynamically add graphs for any new ip found on the network. Regards Mark Bojara ---------------------------------------------------------------- Windows is the best GUI - It always sticks! ---------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Mon Jun 10 8: 7:59 2002 Delivered-To: freebsd-isp@freebsd.org Received: from favour.one2net.co.ug (g-class.sanyutel.com [216.250.215.27]) by hub.freebsd.org (Postfix) with ESMTP id 36EAB37B407 for ; Mon, 10 Jun 2002 08:07:52 -0700 (PDT) Received: from localhost (localhost.one2net.co.ug [127.0.0.1]) by favour.one2net.co.ug (Postfix) with ESMTP id 9B0DE54833; Mon, 10 Jun 2002 18:07:51 +0300 (EAT) Date: Mon, 10 Jun 2002 18:07:51 +0300 (EAT) From: Noah K Sematimba X-X-Sender: ksemat@favour.one2net.co.ug To: Mark Bojara Cc: freebsd-isp@freebsd.org Subject: Re: dynamic mrtg graphs In-Reply-To: Message-ID: <20020610180544.L52435-100000@favour.one2net.co.ug> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I do not know whether this will fit in your description but chekc out http://www.raxnet.net/products/cacti it requries rrdtool. Noah. On Mon, 10 Jun 2002, Mark Bojara wrote: > Greetings, > > I am looking for a tool that can generate graphs per ip address. I know > this is possible by writing a custom script to read it from "ipfw count" > but I am looking for a tool that will dynamically add graphs for any new > ip found on the network. > > Regards > Mark Bojara > > ---------------------------------------------------------------- > Windows is the best GUI - It always sticks! > ---------------------------------------------------------------- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-isp" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Mon Jun 10 20:51:47 2002 Delivered-To: freebsd-isp@freebsd.org Received: from westhost30.westhost.net (westhost30.westhost.net [216.71.84.171]) by hub.freebsd.org (Postfix) with ESMTP id 4EC2E37B40B for ; Mon, 10 Jun 2002 20:51:41 -0700 (PDT) Received: from ozzone (CPE-144-137-7-13.vic.bigpond.net.au [144.137.7.13]) by westhost30.westhost.net (8.11.6/8.11.6) with SMTP id g5B3pQA30534 for ; Mon, 10 Jun 2002 22:51:27 -0500 Message-ID: <001801c210fa$f06933d0$0100a8c0@ozzone> From: "Arkadi Kosmynin" To: References: Subject: [Ozway] Announce: Free licenses for early starters Date: Tue, 11 Jun 2002 13:49:01 +1000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Oz Insight has recently released Ozway - a binary enhanced News-to-Web gateway. Ozway enables every ISP to provide their users with quality service currently available only from a few companies specializing in the Usenet area. Please visit Ozway home page at http://www.ozinsight.com/ozway/index.php Look at the screenshots, read about the features. Ozway is designed to provide a WYSIWYG access to Usenet binary groups carrying images (though it can be used with other newsgroups as well) by offering image thumbnails to users for preview. Users can see what they are about to download and thus avoid downloading unwanted material and improve dramatically the value received for time and money, and their satisfaction with the service. Ozway is easy to use (point and click) and easy to run (start and forget). It is a fast and scalable application capable of serving hundreds of simultaneous connections from users. As it is mentioned before, Ozway is good for end users because it saves time and money. Why is it good for ISPs? Because it saves even more money for them. It is very simple: most of the Internet traffic is spent on downloading of large binary objects, such as pictures, movies, music and software. If people take this stuff from a local news server, they are not using external Web link and thus saving external traffic and making the Web faster for everybody else. There are lots of binary goodies posted in newsgroups. And it is amazing how few people know about the Usenet and use it. We hope that Ozway can help to introduce more people to the Usenet, make the Usenet fun and popular. This may help to achieve huge savings in external traffic. It takes only 10 minutes to install and configure Ozway. It runs as a separate HTTP daemon and is just another client to a news server. So, it will not disrupt work of the news server or do nasty things to the Web server. Ozway has a built-in cache, so, it can be used to take part of the load off the news server. Also, if the ISP doesn't have a news server and are outsourcing news service, they can use Ozway as an on-site cache. We are interested in Ozway reaching end users ASAP. This is why we are offering free licenses to ISPs who start using Ozway soon. The early starters program is open till the end of June. Please read more here: http://www.ozinsight.com/ozway/start.html There are versions available for Linux 7.1 or later, FreeBSD 4.3 or later and Win2K/NT. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Tue Jun 11 5: 0:13 2002 Delivered-To: freebsd-isp@freebsd.org Received: from floyd.gnulife.org (floyd.gnulife.org [199.86.41.27]) by hub.freebsd.org (Postfix) with ESMTP id 49A5737B404 for ; Tue, 11 Jun 2002 05:00:09 -0700 (PDT) Received: by floyd.gnulife.org (Postfix, from userid 1000) id DC67443280; Tue, 11 Jun 2002 07:15:29 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by floyd.gnulife.org (Postfix) with ESMTP id C6D0A4309D for ; Tue, 11 Jun 2002 07:15:29 -0500 (CDT) Date: Tue, 11 Jun 2002 07:15:29 -0500 (CDT) From: Jamie Ostrowski To: freebsd-isp@freebsd.org Subject: Trouble rebuilding a port Message-ID: <20020611071325.C24090-100000@floyd.gnulife.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Can anyone tell me how to rebuild a port if it's been accidently deleted? I would use cvsup, but unfortunately that is the port I want to build! Any links to docs would also be helpful if you now of any. Thanks. - Jamie ************************************ "Nothing astonishes men so much as common sense and plain dealing." *********************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Tue Jun 11 5:15:44 2002 Delivered-To: freebsd-isp@freebsd.org Received: from bilver.wjv.com (spdsl-033.wanlogistics.net [63.209.115.33]) by hub.freebsd.org (Postfix) with ESMTP id AB8F637B406 for ; Tue, 11 Jun 2002 05:15:38 -0700 (PDT) Received: (from bv@localhost) by bilver.wjv.com (8.11.6/8.11.6) id g5BCFU631786; Tue, 11 Jun 2002 08:15:30 -0400 (EDT) (envelope-from bv) Date: Tue, 11 Jun 2002 08:15:30 -0400 From: Bill Vermillion To: Jamie Ostrowski Cc: freebsd-isp@FreeBSD.ORG Subject: Re: Trouble rebuilding a port Message-ID: <20020611121530.GA31653@wjv.com> Reply-To: bv@wjv.com References: <20020611071325.C24090-100000@floyd.gnulife.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020611071325.C24090-100000@floyd.gnulife.org> User-Agent: Mutt/1.3.25i Organization: W.J.Vermillion / Orlando - Winter Park Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org While normally not able to pour water out of boot that had instructions on the heel, on Tue, Jun 11, 2002 at 07:15 our dear friend Jamie Ostrowski uttered this load of codswallop: > Can anyone tell me how to rebuild a port if it's been > accidently deleted? I would use cvsup, but unfortunately that > is the port I want to build! Any links to docs would also be > helpful if you now of any. Thanks. I find that building cvsup takes a lot of resoures such as installing modula to build it, so I've always just put cvsup in as an installable package. You can do this. PKG_PATH=ftp://ftp2.freebsd.org/pub/FreeBSD/FreeBSD-stable/packages export PKG_PATH or setenv PKG_PATHftp://ftp2.freebsd.org/pub/FreeBSD/FreeBSD-stable/packages depending on what shell you use. Then do this. pkg_add -v $PKG_PATH/net/cvsup-without-gui-16.1f.tgz [or the approriate package substitued above] Really quite painless. Bill > > {or set PKG_PATH -- Bill Vermillion - bv @ wjv . com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Tue Jun 11 5:29:19 2002 Delivered-To: freebsd-isp@freebsd.org Received: from drex.staff.izr.com (drex.staff.izr.com [195.26.33.16]) by hub.freebsd.org (Postfix) with ESMTP id 5C52137B409 for ; Tue, 11 Jun 2002 05:29:15 -0700 (PDT) Received: by drex.staff.izr.com (Postfix, from userid 1001) id A7D4033782; Tue, 11 Jun 2002 13:29:13 +0100 (BST) Date: Tue, 11 Jun 2002 13:29:13 +0100 From: Mark Drayton To: freebsd-isp@FreeBSD.ORG Subject: Re: Trouble rebuilding a port Message-ID: <20020611132913.A43269@drex.staff.izr.com> Mail-Followup-To: freebsd-isp@FreeBSD.ORG References: <20020611071325.C24090-100000@floyd.gnulife.org> <20020611121530.GA31653@wjv.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020611121530.GA31653@wjv.com>; from bv@wjv.com on Tue, Jun 11, 2002 at 08:15:30AM -0400 Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Bill Vermillion (bv@wjv.com) wrote: > While normally not able to pour water out of boot that had > instructions on the heel, on Tue, Jun 11, 2002 at 07:15 > our dear friend Jamie Ostrowski uttered this load of codswallop: > > > Can anyone tell me how to rebuild a port if it's been > > accidently deleted? I would use cvsup, but unfortunately that > > is the port I want to build! Any links to docs would also be > > helpful if you now of any. Thanks. > > I find that building cvsup takes a lot of resoures such as > installing modula to build it, so I've always just put cvsup in > as an installable package. > > You can do this. > > PKG_PATH=ftp://ftp2.freebsd.org/pub/FreeBSD/FreeBSD-stable/packages > export PKG_PATH > > or > > setenv PKG_PATHftp://ftp2.freebsd.org/pub/FreeBSD/FreeBSD-stable/packages > > depending on what shell you use. > > Then do this. > > pkg_add -v $PKG_PATH/net/cvsup-without-gui-16.1f.tgz or this: pkg_add -r cvsup-without-gui Cheers, -- Mark Drayton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Tue Jun 11 5:43: 5 2002 Delivered-To: freebsd-isp@freebsd.org Received: from favour.one2net.co.ug (g-class.sanyutel.com [216.250.215.27]) by hub.freebsd.org (Postfix) with ESMTP id 9996937B40D for ; Tue, 11 Jun 2002 05:42:54 -0700 (PDT) Received: from localhost (localhost.one2net.co.ug [127.0.0.1]) by favour.one2net.co.ug (Postfix) with ESMTP id 50AE954833; Tue, 11 Jun 2002 15:42:38 +0300 (EAT) Date: Tue, 11 Jun 2002 15:42:38 +0300 (EAT) From: Noah K Sematimba X-X-Sender: ksemat@favour.one2net.co.ug To: Jamie Ostrowski Cc: freebsd-isp@freebsd.org Subject: Re: Trouble rebuilding a port In-Reply-To: <20020611071325.C24090-100000@floyd.gnulife.org> Message-ID: <20020611154142.W56138-100000@favour.one2net.co.ug> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Try portcheckout /usr/ports/devel/portcheckout Noah. On Tue, 11 Jun 2002, Jamie Ostrowski wrote: > > > > Can anyone tell me how to rebuild a port if it's been accidently > deleted? I would use cvsup, but unfortunately that is the port I want to > build! Any links to docs would also be helpful if you now of any. Thanks. > > > > - Jamie > > > > > ************************************ > > "Nothing astonishes men so much as common sense and plain dealing." > > *********************************** > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-isp" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Tue Jun 11 8:20:26 2002 Delivered-To: freebsd-isp@freebsd.org Received: from psknet.com (voyager.psknet.com [63.171.251.15]) by hub.freebsd.org (Postfix) with SMTP id 86A8637B400 for ; Tue, 11 Jun 2002 08:20:20 -0700 (PDT) Received: (qmail 35156 invoked by uid 85); 11 Jun 2002 15:14:42 -0000 Received: from troy@psknet.com by voyager.psknet.com with qmail-scanner-1.02 (uvscan: v4.1.40/v4100. . Clean. Processed in 4.174539 secs); 11 Jun 2002 15:14:41 -0000 Received: from 64-4-124-138.dmt.ntelos.net (HELO abyss) (64.4.124.138) by voyager.psknet.com with SMTP; 11 Jun 2002 15:14:37 -0000 From: "Troy Settle" To: "'Michael Klosterman'" , Subject: RE: web based tool that allows users to change/reset pw? Date: Tue, 11 Jun 2002 11:20:13 -0400 Message-ID: <003f01c2115b$7c739180$8a7c0440@psknet.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <021e01c201a0$305ea7a0$63f8a4d0@brookings.net> Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org A little late response, but hopefully it'll help you. I've got 2 scripts, one perl, one php that does this. Requires poppasswd from Qualcomm (/usr/ports/mail/poppassd) http://home.psknet.com/troy -- Troy Settle Pulaski Networks 540.994.4254 - 866.477.5638 http://www.psknet.com > -----Original Message----- > From: owner-freebsd-isp@FreeBSD.ORG > [mailto:owner-freebsd-isp@FreeBSD.ORG] On Behalf Of Michael Klosterman > Sent: Wednesday, May 22, 2002 10:52 AM > To: isp@FreeBSD.ORG > Subject: web based tool that allows users to change/reset pw? > > > Anyone know of such a thing? We're an ISP, and we're trying > to reduce our > support time on these types of things.... > > Thank you. > > - michael > -- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-isp" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Tue Jun 11 11: 3:37 2002 Delivered-To: freebsd-isp@freebsd.org Received: from opium.co.za (opium.co.za [196.34.165.210]) by hub.freebsd.org (Postfix) with ESMTP id CF76737B409 for ; Tue, 11 Jun 2002 11:03:30 -0700 (PDT) Received: from mark (helo=localhost) by opium.co.za with local-esmtp (Exim 3.35 #1 (Debian)) id 17HpxW-0004nK-00; Tue, 11 Jun 2002 20:01:34 +0200 Date: Tue, 11 Jun 2002 20:01:33 +0200 (SAST) From: Mark Bojara X-X-Sender: mark@opium.co.za To: Noah K Sematimba Cc: freebsd-isp@freebsd.org Subject: Re: dynamic mrtg graphs In-Reply-To: <20020610180544.L52435-100000@favour.one2net.co.ug> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I am looking for something a little bit more dynamic. For example It will sniff traffic going through the server and if it picks up a new ip address it will automatically add graphs for it and start monitoring its bandwidth usage. Regards Mark ---------------------------------------------------------------- There will be no last bus tonight. ---------------------------------------------------------------- On Mon, 10 Jun 2002, Noah K Sematimba wrote: > >I do not know whether this will fit in your description but chekc out > >http://www.raxnet.net/products/cacti > >it requries rrdtool. > >Noah. > >On Mon, 10 Jun 2002, Mark Bojara wrote: > >> Greetings, >> >> I am looking for a tool that can generate graphs per ip address. I know >> this is possible by writing a custom script to read it from "ipfw count" >> but I am looking for a tool that will dynamically add graphs for any new >> ip found on the network. >> >> Regards >> Mark Bojara >> >> ---------------------------------------------------------------- >> Windows is the best GUI - It always sticks! >> ---------------------------------------------------------------- >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-isp" in the body of the message >> > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-isp" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Tue Jun 11 14:53:54 2002 Delivered-To: freebsd-isp@freebsd.org Received: from scan.ji-net.com (scan.ji-net.com [203.130.156.4]) by hub.freebsd.org (Postfix) with ESMTP id C348637B407 for ; Tue, 11 Jun 2002 14:53:47 -0700 (PDT) Received: from net1.ji-net.com ([203.156.15.120]) by scan.ji-net.com (8.11.2/8.11.2) with SMTP id g5BLrjQ10007 for ; Wed, 12 Jun 2002 04:53:45 +0700 Message-Id: <200206112153.g5BLrjQ10007@scan.ji-net.com> Date: Wed, 12 Jun 2002 04:55:49 To: freebsd-isp@FreeBSD.org From: goodhealthgoodjob@yahoo.com (foodforhealth) Subject: Çѹ¹Õé¤Ø³´ÙáÅÊØ¢ÀÒ¾áÅéÇËÃ×ÍÂѧ X-Virus-Scanned: by AMaViS-perl11-milter (http://amavis.org/) Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org á¹Ð¹Óâ»Ãá¡ÃÁ¤Çº¤ØÁ¹éÓ˹ѡ à¾ÔèÁ¹éÓ˹ѡ ÃÑ¡ÉÒÊØ¢ÀÒ¾ ¤Ø³ËÃ×ͤ¹·Õè¤Ø³ÃÑ¡¡ÓÅѧÁͧËÒÇÔ¸Õ´ÙáÅÊØ¢ÀÒ¾·Õèà»ç¹¸ÃÃÁªÒµÔÍÂÙèãªèäËÁ? ËÒ¡¤Ø³àº×èÍ˹èÒ¡Ѻ¤ÇÒÁ¾ÂÒÂÒÁ·ÕèäÁè»ÃÐʺ¤ÇÒÁÊÓàÃ稤ÃÑé§áÅéǤÃÑé§àÅèÒ ã¹¡ÒôÙáÅÊØ¢ÀÒ¾à¾×èÍÃÙ»ÃèÒ§·Õè´Õ àÃÒÁÕâ»Ãá¡ÃÁâÀª¹Ò¡ÒÃà¾×èÍÊØ¢ÀÒ¾ ·ÕèªèǤسä´é ÊÓËÃѺ¼Ùé·ÕèÁջѭËÒ ¹éÓ˹ѡà¡Ô¹ËÃ×ÍÍéǹ, ¼ÍÁà¡Ô¹ä», ÁջѭËÒÊØ¢ÀÒ¾ (¼ÍÁáËé§áç¹éÍÂ, ¾Ø§ËéÍÂÍ×´ÍÒ´, ¢Ò´¤ÇÒÁÁÑè¹ã¨, âäÀѶÒÁËÒ,ãºË¹éÒà»ç¹ÊÔÇ, ¼ÔǾÃóàËÕèÂÇÂè¹, ¤¹àÅ蹡ÕÌÒ, ¤Ø³»éÒÇÑ·ͧ, ¤Ø³¹éÍ§æ ·ÕèÍÂÒ¡ÊÇÂ)à»ç¹¼ÅÔµÀѳ±ì¨Ò¡¸ÃÃÁªÒµÔ 100 % äÁèãªèÂÒ äÁèµéͧʹÍÒËÒà äÁèÁռŢéÒ§à¤Õ§ äÁèµéͧÍÍ¡¡ÓÅѧ¡Ò ¿Ñ§´ÙäÁè¹èÒàª×èÍáµè¡çµéͧàª×èÍà¾ÃÒмèÒ¹ ÍÂ.·Ø¡»ÃÐà·È·Õèà¢éÒ仢ÒÂâ´Â੾ÒлÃÐà·Èä·ÂáÅÐÍàÁÃÔ¡Ò ãËéÊÒÃÍÒËÒäú¶éǹ »ÃѺÊÁ´ØŢͧÃèÒ§¡ÒÂÅ´ä¢ÁѹÊèǹà¡Ô¹ ÃѺÃͧ¼ÅÀÒÂã¹30Çѹ´éÇÂÃкº¤×¹à§Ô¹100%(á¾·Âì¼Ùé¤Ô´¤é¹ÍÒËÒÃÊٵùÕé¤×ͤ¹·Õè¤Ô´¤é¹ÍÒËÒÃãËé¹Ñ¡ºÔ¹ÍÇ¡ÒÈͧ¤ì¡ÒùҫèÒ) ʹ㨠¢Í¤Óá¹Ð¹Óà¾ÔèÁàµÔÁä´é·Õè ¤Ø³ÊÔÃÔ 01-8901701¾º¤ÓµÍºÊØ´·éÒ¢ͧ¤Ø³ä´é·Õè¹Õè http://www.smartslender.com/foodforhealth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Tue Jun 11 15: 2:50 2002 Delivered-To: freebsd-isp@freebsd.org Received: from richard2.pil.net (richard2.pil.net [208.8.16.11]) by hub.freebsd.org (Postfix) with SMTP id 6F79037B419 for ; Tue, 11 Jun 2002 15:02:29 -0700 (PDT) Received: (qmail 86516 invoked by uid 1825); 11 Jun 2002 22:02:25 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 11 Jun 2002 22:02:25 -0000 Date: Tue, 11 Jun 2002 18:02:25 -0400 (EDT) From: X-Sender: up@richard2.pil.net To: FreeBSD ISP List Subject: 'make world' crashes consistently Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Trying to shake out the (apparently many) hardware bugs from the latest server I built, I did several 'make world's to stress test it. They were successful the first couple of times, but on the third try, it locked the server up completely. After a cold reboot, it came up fine, but now, every time I try to do a 'make world', I get: obj-elf.o: In function `obj_elf_popsection': obj-elf.o(.text+0xfc1): undefined reference to `section_stack' obj-elf.o(.text+0xfdb): undefined reference to `section_stack' obj-elf.o(.text+0xfe3): undefined reference to `previous_section' obj-elf.o(.text+0xfeb): undefined reference to `previous_subsection' *** Error code 1 Stop in /usr/src/gnu/usr.bin/binutils/as/i386-freebsd. *** Error code 1 Stop in /usr/src/gnu/usr.bin/binutils/as. *** Error code 1 Stop in /usr/src/gnu/usr.bin/binutils. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 I tried a 'make clean', then even did a cvsup of the latest -stable branch, even rebuilt the kernel, but the same thing keeps happening. I'm getting new CPUs (apparently I had *2* new, defective PIII 600s) in a couple of days (already swapped out the motherboard-L440GX), and if need be, I'll just start over from scratch, but I'm curious as to why this won't work... TIA, James Smallacombe PlantageNet, Inc. CEO and Janitor up@3.am http://3.am ========================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Tue Jun 11 21:32: 2 2002 Delivered-To: freebsd-isp@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id 4749D37B407 for ; Tue, 11 Jun 2002 21:31:58 -0700 (PDT) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.11.6/8.11.6) with ESMTP id g5C4Vva66132 for ; Tue, 11 Jun 2002 22:31:57 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Tue, 11 Jun 2002 22:31:57 -0600 (CST) From: Ryan Thompson To: freebsd-isp@freebsd.org Subject: sendmail(8) meets the digital camera Message-ID: <20020611220627.U63701-100000@ren.sasknow.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Here's the funny story: One of our very nice hosting customers returned from vacation at 8am this morning... complete with a 3 megapixel digital camera. The guy constructed a ~5MB email and sends it out in one shot to a list of no fewer than 228 of his very closest contacts. You can do the math on that. :-) The traffic was no problem (we've had a lot worse), but a long time ago, I set up a cron job to process the sendmail queue every 15 minutes. Now, in the wake of this post-vacation payload, I'm seeing some different unusual things every fifteen minutes with two (and only two) of the recipients of the same message: Jun 11 21:58:27 ren sendmail[64424]: g5BDvL606361: to=, delay=14:01:05, xdelay=00:03:34, mailer=esmtp, pri=15502013, relay=theirisp.com. [205.136.0.57], dsn=4.0.0, stat=I/O error Is there any way to track down this "I/O" error? Surely, it's on "theirisp"'s end... probably a broken mailserver? Jun 11 21:58:30 ren sendmail[64424]: g5BDvL606361: to=, delay=14:01:08, xdelay=00:00:03, mailer=esmtp, pri=15502013, relay=diffisp.com. [200.50.68.3], dsn=4.3.1, stat=Deferred: 452 Message for would exceed mailbox quota That is a bit unorthodox, no? Why wouldn't diffisp just accept delivery and then send a bounce back to the sender as usual, instead of forcing us to keep it in our queue and hammer them until *their* user gets around to cleaning out his/her inbox? :-) I would guess their setup is just broken. Am I right? These two entries have been recurring in maillog every time the queue script runs, and it's getting more than a little irritating. :-) For now I've just backed off the sendmail queue script to run half as often. Any ideas/suggestions as to what I could do to avoid this problem, both immediately, and for similar occurences in the future? Thanks, - Ryan -- Ryan Thompson SaskNow Technologies - http://www.sasknow.com 901 1st Avenue North - Saskatoon, SK - S7K 1Y4 Tel: 306-664-3600 Fax: 306-664-3630 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Tue Jun 11 23:15:23 2002 Delivered-To: freebsd-isp@freebsd.org Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id DB7E637B405 for ; Tue, 11 Jun 2002 23:15:17 -0700 (PDT) Received: from net2.dinoex.sub.org (dinoex@net2.dinoex.sub.org [127.0.0.1]) by net2.dinoex.sub.org (8.12.4/8.12.4) with ESMTP id g5C6F6Oh026892 for ; Wed, 12 Jun 2002 08:15:07 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) X-MDaemon-Deliver-To: Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.12.4/8.12.4/Submit) with BSMTP id g5C6F4KQ026867 for ; Wed, 12 Jun 2002 08:15:04 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) To: freebsd-isp@FreeBSD.ORG Message-ID: <4J7jpX4vPF@dmeyer.dinoex.sub.org> From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: sendmail(8) meets the digital camera Date: Wed, 12 Jun 2002 08:13:02 +0200 X-Mailer: Dinoex 1.77 References: <20020611220627.U63701-100000@ren.sasknow.com> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.94] X-Accept-Language: de,en X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Noad: Please don't send me ad's by mail. I'm bored by this type of mail. X-Copyright: (C) Copyright 2001 by Dirk Meyer -- All rights reserved. X-Note: sending SPAM is a violation of both german and US law and will at least trigger a complaint at your provider's postmaster. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-No-Archive: yes X-ZC-VIA: 20020612000000S+2@dinoex.sub.org Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Ryan Thompson schrieb:, > The traffic was no problem (we've had a lot worse), but a long time > ago, I set up a cron job to process the sendmail queue every 15 > minutes. > These two entries have been recurring in maillog every time the queue > script runs, and it's getting more than a little irritating. :-) For > now I've just backed off the sendmail queue script to run half as > often. > Any ideas/suggestions as to what I could do to avoid this problem, > both immediately, and for similar occurences in the future? Better way to do it: define(`confMIN_QUEUE_AGE', `60m')dnl confMIN_QUEUE_AGE MinQueueAge [0] The minimum amount of time a job must sit in the queue between queue runs. This allows you to set the queue run interval low for better responsiveness without trying all jobs in each run. if delivery fails, you try it less freqent, and this don't affect normal delivery. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany - [dirk.meyer@dinoex.sub.org],[dirk.meyer@guug.de],[dinoex@FreeBSD.org] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Wed Jun 12 9: 6: 7 2002 Delivered-To: freebsd-isp@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id C856737B40F for ; Wed, 12 Jun 2002 09:06:03 -0700 (PDT) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.11.6/8.11.6) with ESMTP id g5CG5Y902952; Wed, 12 Jun 2002 10:05:39 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Wed, 12 Jun 2002 10:05:34 -0600 (CST) From: Ryan Thompson To: Dirk Meyer Cc: freebsd-isp@FreeBSD.ORG Subject: Re: sendmail(8) meets the digital camera In-Reply-To: <4J7jpX4vPF@dmeyer.dinoex.sub.org> Message-ID: <20020612100430.B2462-100000@ren.sasknow.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dirk Meyer wrote to freebsd-isp@FreeBSD.ORG: > > Any ideas/suggestions as to what I could do to avoid this problem, > > both immediately, and for similar occurences in the future? > > Better way to do it: > > define(`confMIN_QUEUE_AGE', `60m')dnl > > confMIN_QUEUE_AGE MinQueueAge [0] The minimum amount of time a job > must sit in the queue between queue > runs. This allows you to set the > queue run interval low for better > responsiveness without trying all > jobs in each run. Perfect! Thanks Dirk. I didn't have to blow the dust off of my old Sendmail docs :-) - Ryan -- Ryan Thompson SaskNow Technologies - http://www.sasknow.com 901 1st Avenue North - Saskatoon, SK - S7K 1Y4 Tel: 306-664-3600 Fax: 306-664-3630 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Wed Jun 12 9: 8:51 2002 Delivered-To: freebsd-isp@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id 7C6BA37B40F for ; Wed, 12 Jun 2002 09:08:46 -0700 (PDT) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.11.6/8.11.6) with ESMTP id g5CG8gU03156; Wed, 12 Jun 2002 10:08:43 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Wed, 12 Jun 2002 10:08:42 -0600 (CST) From: Ryan Thompson To: John Brooks Cc: freebsd-isp@freebsd.org Subject: RE: sendmail(8) meets the digital camera In-Reply-To: <001d01c211cc$a27d0ca0$c905010a@daylight.net> Message-ID: <20020612100657.N2462-100000@ren.sasknow.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org John Brooks wrote to 'Ryan Thompson': > Here's another thought, this email may be bigger than their entire > mailbox quota, in which case will they ever get it? Oh probably... In which case it will be dropped from the queue eventually. I'm not worried about the queue so much as I am curious about what kind of mail server sends back deferred responses when their users' quotas have been exceeded. ;-) - Ryan -- Ryan Thompson SaskNow Technologies - http://www.sasknow.com 901 1st Avenue North - Saskatoon, SK - S7K 1Y4 Tel: 306-664-3600 Fax: 306-664-3630 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Wed Jun 12 9:24:35 2002 Delivered-To: freebsd-isp@freebsd.org Received: from mail.day-light.net (day-light.net [64.37.72.2]) by hub.freebsd.org (Postfix) with ESMTP id 5F84037B406 for ; Wed, 12 Jun 2002 09:24:29 -0700 (PDT) Received: from w1 (118-203.bestdsl.net [216.162.118.203]) by mail.day-light.net (Postfix) with SMTP id 58CFB3521F; Wed, 12 Jun 2002 11:24:28 -0500 (CDT) Reply-To: From: "John Brooks" To: "'Ryan Thompson'" Cc: Subject: RE: sendmail(8) meets the digital camera Date: Wed, 12 Jun 2002 11:26:53 -0500 Message-ID: <000101c2122d$f6ef4760$c905010a@daylight.net> MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <20020612100657.N2462-100000@ren.sasknow.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org postfix handles that for me, I get the initial response when it occurs and then a listing in the daily run until it clears, and a final response when it times out without a sucessful delivery. is that what you are after? postfix is a drop in replacement for sendmail, easy to configure... -- John Brooks john@stlbsd.org -----Original Message----- From: Ryan Thompson [mailto:ryan@sasknow.com] Sent: Wednesday, June 12, 2002 11:09 AM To: John Brooks Cc: freebsd-isp@freebsd.org Subject: RE: sendmail(8) meets the digital camera John Brooks wrote to 'Ryan Thompson': > Here's another thought, this email may be bigger than their entire > mailbox quota, in which case will they ever get it? Oh probably... In which case it will be dropped from the queue eventually. I'm not worried about the queue so much as I am curious about what kind of mail server sends back deferred responses when their users' quotas have been exceeded. ;-) - Ryan -- Ryan Thompson SaskNow Technologies - http://www.sasknow.com 901 1st Avenue North - Saskatoon, SK - S7K 1Y4 Tel: 306-664-3600 Fax: 306-664-3630 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Wed Jun 12 12:21:36 2002 Delivered-To: freebsd-isp@freebsd.org Received: from mail.ecotech.com.lr (mail.liberiaonline.com.lr [64.110.100.164]) by hub.freebsd.org (Postfix) with SMTP id DE76E37B413 for ; Wed, 12 Jun 2002 12:21:12 -0700 (PDT) Received: (qmail 8306 invoked by uid 85); 12 Jun 2002 19:19:47 -0000 Received: from unknown (HELO wireless) (216.252.230.146) by mail.liberiaonline.com.lr with SMTP; 12 Jun 2002 19:19:46 -0000 Message-ID: <001601c21246$4acc9f50$04ef10ac@wireless> From: "Max" To: Subject: Cybercafe Source Code Date: Wed, 12 Jun 2002 19:20:59 -0000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0013_01C21246.489EC2D0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0013_01C21246.489EC2D0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, Does any one have source code for a cyber cafe software to control = access to my network...? Something that I can modify from source code = ....... Thanks Max ------=_NextPart_000_0013_01C21246.489EC2D0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
 
Does any one have source code for a = cyber cafe=20 software to control access to my network...?  Something that I can = modify=20 from source code .......
 
Thanks
 
Max
------=_NextPart_000_0013_01C21246.489EC2D0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Wed Jun 12 14:18:40 2002 Delivered-To: freebsd-isp@freebsd.org Received: from richard2.pil.net (richard2.pil.net [208.8.16.11]) by hub.freebsd.org (Postfix) with SMTP id 4F6D837B406 for ; Wed, 12 Jun 2002 14:18:31 -0700 (PDT) Received: (qmail 68849 invoked by uid 1825); 12 Jun 2002 21:18:26 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 12 Jun 2002 21:18:26 -0000 Date: Wed, 12 Jun 2002 17:18:26 -0400 (EDT) From: X-Sender: up@richard2.pil.net To: FreeBSD ISP List Subject: Re: 'make world' crashes consistently In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org replying to my own post: I just got 2 new PIII 1GHz (256k cache) processors (in the retail box), installed them and it built fine the first try. this is after about a dozen consecutive failures trying either or both PIII 600 (512k cache) OEM processors. Weird... On Tue, 11 Jun 2002 up@3.am wrote: > > Trying to shake out the (apparently many) hardware bugs from the latest > server I built, I did several 'make world's to stress test it. They were > successful the first couple of times, but on the third try, it locked the > server up completely. > > After a cold reboot, it came up fine, but now, every time I try to do a > 'make world', I get: > > > > obj-elf.o: In function `obj_elf_popsection': > obj-elf.o(.text+0xfc1): undefined reference to `section_stack' > obj-elf.o(.text+0xfdb): undefined reference to `section_stack' > obj-elf.o(.text+0xfe3): undefined reference to `previous_section' > obj-elf.o(.text+0xfeb): undefined reference to `previous_subsection' > *** Error code 1 > > Stop in /usr/src/gnu/usr.bin/binutils/as/i386-freebsd. > *** Error code 1 > > Stop in /usr/src/gnu/usr.bin/binutils/as. > *** Error code 1 > > Stop in /usr/src/gnu/usr.bin/binutils. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > I tried a 'make clean', then even did a cvsup of the latest -stable > branch, even rebuilt the kernel, but the same thing keeps happening. I'm > getting new CPUs (apparently I had *2* new, defective PIII 600s) in a > couple of days (already swapped out the motherboard-L440GX), and if need > be, I'll just start over from scratch, but I'm curious as to why this > won't work... > > TIA, > > James Smallacombe PlantageNet, Inc. CEO and Janitor > up@3.am http://3.am > ========================================================================= > > James Smallacombe PlantageNet, Inc. CEO and Janitor up@3.am http://3.am ========================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Wed Jun 12 14:56: 3 2002 Delivered-To: freebsd-isp@freebsd.org Received: from mail.lambertfam.org (www.lambertfam.org [216.223.196.6]) by hub.freebsd.org (Postfix) with ESMTP id CE81F37B408 for ; Wed, 12 Jun 2002 14:55:58 -0700 (PDT) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.inch.com (Postfix) with ESMTP id CBA483508F for ; Wed, 12 Jun 2002 17:53:59 -0400 (EDT) Received: from laptop.lambertfam.org (rubber-biscuit.inch.com [216.223.192.98]) by mail.lambertfam.org (Postfix) with ESMTP id 1E3003508C for ; Wed, 12 Jun 2002 17:53:56 -0400 (EDT) Received: by laptop.lambertfam.org (Postfix, from userid 1000) id C137F28B09; Wed, 12 Jun 2002 17:55:53 -0400 (EDT) Date: Wed, 12 Jun 2002 17:55:53 -0400 From: Scott Lambert To: freebsd-isp@freebsd.org Subject: Re: sendmail(8) meets the digital camera Message-ID: <20020612215553.GA918@laptop.lambertfam.org> Mail-Followup-To: freebsd-isp@freebsd.org References: <001d01c211cc$a27d0ca0$c905010a@daylight.net> <20020612100657.N2462-100000@ren.sasknow.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020612100657.N2462-100000@ren.sasknow.com> User-Agent: Mutt/1.3.99i Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Jun 12, 2002 at 10:08:42AM -0600, Ryan Thompson wrote: > John Brooks wrote to 'Ryan Thompson': > > > Here's another thought, this email may be bigger than their entire > > mailbox quota, in which case will they ever get it? > > Oh probably... In which case it will be dropped from the queue > eventually. I'm not worried about the queue so much as I am curious > about what kind of mail server sends back deferred responses when > their users' quotas have been exceeded. ;-) For all the ISP knows, the user may clear out his mailbox thirty seconds after they give you the 4xx error. Then the next time your queue runs, the user gets his mail and everyone is happy. AFAICT, a full mailbox is, and should be, a temporary condition. If I notice a user with a habitually full box, I bounce their mail with a fatal error in my access lists until user complains. They almost never do. Those are usually the users who signed up for Internet, ran out and signed up for every mailing list known to mankind, and couldn't deal with the flow. So they stop checking their mail. -- Scott Lambert KC5MLE Unix SysAdmin lambert@lambertfam.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Thu Jun 13 4:36:57 2002 Delivered-To: freebsd-isp@freebsd.org Received: from smtp3.9tel.net (smtp.9tel.net [213.203.124.146]) by hub.freebsd.org (Postfix) with ESMTP id B782737B412 for ; Thu, 13 Jun 2002 04:36:35 -0700 (PDT) Received: from libertysurf.fr (164.108-30-212.9massy1-1-ro-as-i3-1.9tel.net [212.30.108.164]) by smtp3.9tel.net (Postfix) with ESMTP id 09AC25C64A; Thu, 13 Jun 2002 13:31:56 +0200 (CEST) Message-ID: <63562002641311291163@libertysurf.fr> X-EM-Version: 5, 0, 0, 21 X-EM-Registration: #01B0530810E603002D00 X-Priority: 3 Reply-To: surprise@imp20.com To: "-" From: "Surprise !" Subject: Una persona te quiere secretamente Date: Thu, 13 Jun 2002 13:29:11 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_84815C5ABAF209EF376268C8" Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ------=_NextPart_84815C5ABAF209EF376268C8 Content-type: text/plain; charset="iso-8859-1" ------=_NextPart_84815C5ABAF209EF376268C8 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Una persona te quiere secretamente? =20


Una persona te quiere secretamente= ?

Descubre quien tiene un flechazo contigo
llamando al
=
=20

 0906 299 240*=20


Test incognito: los sentimientos de las personas que te gustan!
<= BR>
_______________________________________________________
*0,913 =80 por minuto + IVA
Para=20 no recibir mas mensage, responde "STOP"=2E

=20 ------=_NextPart_84815C5ABAF209EF376268C8-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Thu Jun 13 6:19:36 2002 Delivered-To: freebsd-isp@freebsd.org Received: from ns2.esnx.net (200-161-145-69.dsl.telesp.net.br [200.161.145.69]) by hub.freebsd.org (Postfix) with SMTP id B78AB37B47A for ; Thu, 13 Jun 2002 06:19:23 -0700 (PDT) Received: (qmail 77656 invoked from network); 13 Jun 2002 13:19:07 -0000 Received: from unknown (HELO colazelli.esnx.net) (10.6.49.25) by ns2.esnx.net with SMTP; 13 Jun 2002 13:19:07 -0000 Date: Thu, 13 Jun 2002 10:19:05 -0300 From: Wesley Colazelli Gentini To: freebsd-isp@freebsd.org Subject: VLAN 802.1q Interface Message-Id: <20020613101905.63ecf00f.colazelli@esnx.net> Organization: ESN do Brasil X-Mailer: Sylpheed version 0.7.6claws (GTK+ 1.2.10; i386--netbsdelf) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello for all, I implemented network with 3 cisco switchs conected by trunk(802.1q) and a FreeBSD with one vlan interface for each vlan connected to this switches. All is working fine, but I have problem to send large emails to remote smtp servers, and I cant access secure pages. The error is the same as (Broken Pipe). What can I do? I am with a big problem. 200 clients is connected to this access point :( Thanks for any help! Wesley Colazelli Gentini System Administrator To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Thu Jun 13 8:13:16 2002 Delivered-To: freebsd-isp@freebsd.org Received: from misery.sdf.com (misery.sdf.com [207.200.153.226]) by hub.freebsd.org (Postfix) with ESMTP id D171F37B414 for ; Thu, 13 Jun 2002 08:13:08 -0700 (PDT) Received: from tom (helo=localhost) by misery.sdf.com with local-esmtp (Exim 2.12 #1) id 17IVLr-0003bS-00; Thu, 13 Jun 2002 07:13:27 -0700 Date: Thu, 13 Jun 2002 07:13:25 -0700 (PDT) From: Tom Samplonius To: Wesley Colazelli Gentini Cc: freebsd-isp@freebsd.org Subject: Re: VLAN 802.1q Interface In-Reply-To: <20020613101905.63ecf00f.colazelli@esnx.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, 13 Jun 2002, Wesley Colazelli Gentini wrote: > Hello for all, I implemented network with 3 cisco switchs > conected by trunk(802.1q) and a FreeBSD with one vlan interface for > each vlan connected to this switches. All is working fine, but I have > problem to send large emails to remote smtp servers, and I cant access > secure pages. The error is the same as (Broken Pipe). It is probably a MTU problem. What does the output of "ifconfig -a" look like? Also, not all NICs support 802.1q encapsulation well. fxp or a gigabit card probably work the best. Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Thu Jun 13 9:19:26 2002 Delivered-To: freebsd-isp@freebsd.org Received: from aurora.siteplus.com (aurora.siteplus.com [66.129.2.160]) by hub.freebsd.org (Postfix) with ESMTP id D56D837B414 for ; Thu, 13 Jun 2002 09:19:17 -0700 (PDT) Received: from host-216-78-5-95.jan.bellsouth.net (host-216-78-5-95.jan.bellsouth.net [216.78.5.95]) by aurora.siteplus.com (8.9.3/8.9.3) with ESMTP id MAA34980; Thu, 13 Jun 2002 12:13:24 -0400 (EDT) (envelope-from jim@jwweeks.com) Date: Thu, 13 Jun 2002 12:13:21 -0400 (EDT) From: jim To: Tim McCullagh Cc: freebsd-isp@freebsd.org Subject: Re: suexec question In-Reply-To: <04f901c212aa$f8d45340$6500a8c0@halenet.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, 13 Jun 2002, Tim McCullagh wrote: > However now I get the error > I have also had to change the lines with the <<<< on them basically add > the www into the path or put on a trailing \. I can't see how this would > have of hurt Tim, Thanks for noting the typo's. Did you watch the build to make sure the patch applied cleanly? That is the only thing I can think of that may have gone wrong. If I remember correctly, I actually viewed the patch in my browser at http://www.rtr.com/fpsupport/fp-patch-apache_1.3.22.htm , copied and pasted from the browser to vi files/patch-aj I am going to add this back to the list with the corrections you have pointed out. BTW, I built this from a Jun, 9th cvsup and made world on a clean stable snapshot the same day. -- Jim Weeks cd /usr/ports/misc/compat3x make && make install && make clean cd /usr/local # Fetch fp_install.sh and latest Frontpage extensions from, http://www.microsoft.com/frontpage/ tar xzvf fp50.freebsd.tar.Z cd /usr/ports/apache13-modssl # Obtain latest apache patch from, # http://www.rtr.com/fpsupport/fp-patch-apache_1.3.22.htm # Copy the patch to /usr/ports/www/apache13-modssl/files/ and # rename to patch-aj (/usr/ports/www/apache13-modssl/files/patch-aj) # Edit Makefile and add the following lines right before, # the line (--enable-module=define). Leave out the suexec part # if you don't want it installed. --add-module=${FILESDIR}/mod_frontpage.c \ --enable-module=frontpage \ --enable-suexec \ --suexec-docroot=/usr/local/www/ \ --suexec-caller=www \ --suexec-uidmin=1000 \ --suexec-gidmin=1000 \ --suexec-logfile=/var/log/httpd-suexec.log \ --suexec-userdir=www \ --suexec-safepath=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin \ cp /usr/ports/www/apache13-fp/files/mod_frontpage.c \ /usr/ports/www/apache13-modssl/files/mod_frontpage.c make && make install && make clean cd /usr/ports/www/php_4 make && make install && make clean # Edit httpd.conf, adding the following lines, AddType application/x-httpd-php .php .php3 AddType application/x-httpd-php-source .phps .php3s # Change "AllowOverride None" to, "AllowOverride All" # Make any other appropriate changes. /usr/local/etc/rc.d/apache.sh start Now you can install the frontpage extensions by running, /usr/local/frontpage/version5.0/bin/owsadm.exe All the configuration options for "owsadm.exe" can be found on the Microsoft website, but I usually add extensions with something like this, /usr/local/frontpage/version5.0/bin/owsadm.exe -o install \ -u username -xu username -xg usergroup -pw password -p 80 \ -m domainname.com -t apache-fp -s /usr/local/etc/apache/httpd.conf \ -a administrators One side note and correction. If you plan on using fp_install.sh to extract the tarball and install/upgrade extensions after apache is installed, the script will ask to overwrite your existing httpd. Answer yes to this question. The script will copy your newly compiled httpd to /usr/local/sbin/httpd.orig. Just copy httpd.orig over the httpd that was installed by the script. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Fri Jun 14 10:43:37 2002 Delivered-To: freebsd-isp@freebsd.org Received: from mail.ecotech.com.lr (mail.liberiaonline.com.lr [64.110.100.164]) by hub.freebsd.org (Postfix) with SMTP id 225B237B401 for ; Fri, 14 Jun 2002 10:43:10 -0700 (PDT) Received: (qmail 1056 invoked by uid 85); 14 Jun 2002 17:41:33 -0000 Received: from unknown (HELO wireless) (64.110.100.174) by mail.liberiaonline.com.lr with SMTP; 14 Jun 2002 17:41:32 -0000 Message-ID: <001101c213ca$e446ec50$04ef10ac@wireless> From: "Max" To: References: <001601c21246$4acc9f50$04ef10ac@wireless> Subject: Re: Cybercafe Source Code Date: Fri, 14 Jun 2002 17:42:28 -0000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000E_01C213CA.DA65EE70" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_000E_01C213CA.DA65EE70 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Since i could not get anything, I wrote my own stuff.... pretty neat ----- Original Message -----=20 From: Max=20 To: freebsd-isp@freebsd.org=20 Sent: Wednesday, June 12, 2002 7:20 PM Subject: Cybercafe Source Code Hi, Does any one have source code for a cyber cafe software to control = access to my network...? Something that I can modify from source code = ....... Thanks Max ------=_NextPart_000_000E_01C213CA.DA65EE70 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Since i could not get anything, I = wrote my own=20 stuff.... pretty neat
 
----- Original Message -----
From:=20 Max
Sent: Wednesday, June 12, 2002 = 7:20=20 PM
Subject: Cybercafe Source = Code

Hi,
 
Does any one have source code for a = cyber cafe=20 software to control access to my network...?  Something that I = can modify=20 from source code .......
 
Thanks
 
Max
------=_NextPart_000_000E_01C213CA.DA65EE70-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Sat Jun 15 8:22:42 2002 Delivered-To: freebsd-isp@freebsd.org Received: from arcor.de (ACB1BCC7.ipt.aol.com [172.177.188.199]) by hub.freebsd.org (Postfix) with SMTP id 524F337B40E for ; Sat, 15 Jun 2002 08:18:21 -0700 (PDT) From: "todschick38259@arcor.de" To: Subject: Entschuldigen Sie bitte die Störung! Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Sat, 15 Jun 2002 17:18:38 +0200 Reply-To: "todschick38259@arcor.de" Content-Transfer-Encoding: 8bit Message-Id: <20020615151821.524F337B40E@hub.freebsd.org> Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Entschuldigen Sie bitte die Störung! Mir ist etwas zu Ohren gekommen. Eine relativ aussergewöhnliche Gerüchteküche, aus der man mir ein schwerverdauliches Süppchen vorgesetzt hat, ist der Grund meiner Mail. Unappetitlich ist gar kein Ausdruck! Ist es möglich auf funktechnischem Wege(in welchen Frequenzbereichen?) jemanden zu beeinflussen oder zu manipulieren? Oder sogar zu schikanieren und terrorisieren? Unter dem Motto:"Einen am Sender?Nich ganz alleine? Kleine Mannim Ohr?Falsche Wellenlänge?Bohnen in den Ohren? Auf den Zahn gefühlt(Amalgam)?Mal unverbindlich reinhören? Der Pullacher Wanzentanz? Ist das Spinnerei?Das geht doch gar nicht,oder? Und wenn wie sieht das ethisch moralisch aus? Zur technischen Seite der Sache gibt es zwar Berichte und Webseiten: Totalitaer,de - Die Waffe gegen die Kritik http://www.fosar-bludorf.com/Tempelhof/ http://jya.com/haarp.htm http://www.zeitenschrift.at/magazin/zs_24_15/1_mikrowaffen.htm http://www.bse-plus.de/d/doc/lbrief/lbmincontr.htm http://home.nexgo.de/kraven/bigb/big3.html http://w3.nrl.navy.mil/projects/haarp/index.html http://cryptome.org/ http://www.parascope.com/ds/mkultra0.htm http://www.trufax.org/menu/mind.html http://www.trufax.org/menu/elect.html http://mindcontrolforum.com/ http://www.trufax.org/menu/elect.html usw. usw. usw. ,aber,das kann doch nicht sein,das soetwas gemacht wird,oder? Eine Menschenrechtsverletzung sonder gleichen!?! Ist es möglich,durch Präparation,der Ohren und im Zusammenspiel mit eventuell vorhandenem Zahnersatz? Mit relativ einfacher Funktechnik?? In diesem Land?Hier und heute??? Unter welchen Motiven? Wo ist eigentlich die Abteilung 5 des BND und des Verfassungsschutzes? Kann es sein,daß es Leute gibt,die dem BND/Verfassungsschutz,auf funktechnischem Wege permanent einen Situationsbericht abliefern,ohne es selbst zu merken,im Kindesalter machbar gemacht?? Werden durch solche inoffiziellen Mitarbeiter,beim BND und Verfassungsschutz,nach Stasimanier, Informationen von und über,rein theoretisch, jeden Bundesbürger,gesammelt? Gibt es dann noch ein Recht auf Privatsphere? Wer kontrolliert eigentlich den BND,MAD und Verfassungsschutz auf Unterwanderung??? In der Mail geht es mir eigentlich um die Frage,ob es kriminellen Elementen, aus dem Motiv der Bereicherung,oder Gruppierungen aus ideologischen Motiven, möglich ist ,sich Wissen und Technik anzueignen,die zu anderen Zeiten, aus anderen Motiven(Westfernsehen?),entwickelt wurde. Und stellt der technische Wissensstand, der der Allgemeinheit bekannt ist wirklich das Ende der Fahnenstange dar? Ist es denn nicht kriminellen Elementen genauso möglich, ich sage das jetzt mal verharmlost und verniedlichend, einzelne Personen oder Gruppen mit relativ einfachen Mitteln, aus welchen Motiven auch immer, auszuspionieren? Und stellt diese "Ausspioniererei" nicht einen erheblichen Eingriff in die Privatsphäre dar? Ist es möglich einzelne Personen oder Gruppen, eine Akzeptans einer gewissen Öffentlichkeit(suggeriert?), die z.B. mit Hilfe von Internetseiten,wie zum Beispiel dem "Pranger"geschaffen werden könnte, mal vorausgestzt,zu terroriesieren und oder zu schikanieren, und das in aller (suggerierten)Öffentlichkeit?Haben die Leute die da am Pranger, oder auf irgendeiner anderen Seite verunglimpft,oder gar Verleumdet werden, eigentlich eine Chance zur Gegenöffentlichkeit?Ist das nicht Rufmord? Vor einigen Jahren bin ich per Zufall auf die Seite "Der Pranger" gestoßen, damals lief das noch nicht unter dem Deckmantel der Partnervermittlung. Können sich einzelne Personen,oder Interessengemeinschaften, aus reinem Selbstzweck,solcher Seiten bedienen, um unter dem Deckmantel einer fragwürdigen Zivilkourage, durch anzetteln irgendwelcher Hetzkampagnen,eigene, ganz persöhnliche Interessen durchsetzen? Können solche Seiten zur Koordination von kriminellen machenschaften dienen? Die Frage,ist es Möglichkeit oder Unmöglichkeit,technisch und gesellschaftlich, einzelne Personen,oder auch Gruppierungen,aus einer kriminellen/ideologischen Energei heraus,zu manipulieren oder zu beeinflussen,terrorisieren oder zu schickanieren,und zwar gezielt. Zielgruppenmanipulation durch Massenmedien sind alltägliche Manipulation, der mansich,mehr oder weniger,entziehen kann. Wird das Recht auf Privatsphäre,schleichend,tiefenpsychologisch, durch Sendungen,wie,zum Beispiel "Big brother",untergraben? Sollte bei einem der Angemailten ein gewisser Wissensstand zum Thema vorhanden sein, wäre ich über Hinweise zum Thema froh. Auf der Suche nach Antworten auf meine Fragen maile ich verschiedene Adressen aus dem Internet an, und hoffe aufkonstruktive Antworten und Kritiken. Über einen Besuch auf der Seite würde ich mich freuen. Sollten Sie von mir mehrfach angeschrieben worden sein,so bitte ich Sie,mir dies zu entschuldigen, das war nicht beabsichtigt. Der Grund für meine Anonymität ist die Tatsache, daß bei derlei Fragenstellerei, verständlicherweise,schnell der Ruf nach der Psychatrie laut wird. Was auch Methode hat(ist). Sollten Sie die Mail als Belästigung empfinden, möchte ich mich hiermit dafür entschuldigen! Big brother is watching you? Excuse please the disturbance! Me something came to ears. A relatively unusual rumor kitchen, from which one put forward to me a heavydigestible soup, is the reason of my Mail. Unappetizing is no printout! Is it possible on radio Wege(in for which frequency ranges?) to influence or manipulate someone? Terrorize or to even chicane and? Under the Motto:"Einen at the Sender?Nich quite alone? Small Mannim Ohr?Fal Wellenlaenge?Bohnen in the ears? On the tooth clean-hear gefuehlt(Amalgam)?Mal witthout obligation? The Pullacher bug wanzentanz? Isn't the Spinnerei?Das goes nevertheless at all, or? And if as looks ethicalally morally? For the technical page of the thing there is to report and web page: Totalitaer,de - Die Waffe gegen die Kritik http://www.fosar-bludorf.com/Tempelhof/ http://jya.com/haarp.htm http://www.zeitenschrift.at/magazin/zs_24_15/1_mikrowaffen.htm http://www.bse-plus.de/d/doc/lbrief/lbmincontr.htm http://home.nexgo.de/kraven/bigb/big3.html http://w3.nrl.navy.mil/projects/haarp/index.html http://cryptome.org/ http://www.parascope.com/ds/mkultra0.htm http://www.trufax.org/menu/mind.html http://www.trufax.org/menu/elect.html http://mindcontrolforum.com/ http://www.trufax.org/menu/elect.html usw. usw. usw. but, that cannot be nevertheless, which is made soetwas, or? A violation of human rights resemble special!?! Is it possible, by preparation, the ears and in interaction with possibly available artificial dentures? With relatively simple radio engineering?? In this Land?Hier and today??? Under which motives? Where is the department actually 5 of the BND and the protection of the constitution? Can it be that there are people, which deliver the Federal Intelligence Service/protection of the constitution, on radio way permanently a situation report, without noticing it, in the infancy feasiblly made? By such unofficial coworkers, with the BND and protection of the constitution, after Stasimanier, is information collected of and over,purely theoretically, each Federal citizen? Is there then still another right to Privatsphere? Who actually checks the BND, WAD and protection of the constitution for infiltration??? Into the Mail actually concerns it to me the question whether it criminal items, from which motive of enriching, or groupings from ideological motives is possible, to acquire itself knowledge and technique which were developed at other times, from other Motiven(Westfernsehen?).And does the technical knowledge status place, to that the public admits is really the end of the flag bar? Is it not to criminal items just as possible, I legend that now times played down and does nice-end, individual persons or groups with relatively simple means, to spy from whatever motives always? And doesn't this " Ausspioniererei " represent a substantial intervention into the privatsphaere? It is possible individual persons or groups, one acceptance to of a certain Oeffentlichkeit(suggeriert?), e.g. by Internet pages, how for example the " Pranger"geschaffen could become, times vorausgestzt, to terroriesieren and or chicane, and in everything (the people suggerierten)Oeffentlichkeit?Haben there at the Pranger, or on any other page to be reviled, or slandered, actually a chance to the Gegenoeffentlichkeit?Ist that not character assassination? Some years ago I am by coincidence the page " the Pranger " encountered, at that time ran not yet under the cover of the partner switching.Itself can individual persons, or communities of interests, from pure self purpose, such pages to serve, over under the cover of a doubtful Zivilkourage, through plot any rushing campaigns, own, quite persoehnliche interests to intersperse? Can such pages serve for the co-ordination of criminal machinations? The question, is it possibility or impossibility, technically and socially, individual persons, or also groupings of manipulating or of influencing from an criminal/ideological Energei, terrorizes or to schickanieren, directed.Target group manipulation by mass media are everyday manipulation, from which, more or less, can extract itself. Does the right to privatsphaere, creeping, by transmissions become deep psychological, how, for example " Big undermine brother"? If the Angemailten should be available a certain knowledge status to the topic with one, I would be glad over notes to the topic On the search for responses to my questions maile I different addresses from the Internet on, and hope up-constructional responses and criticisms.Over an attendance on the page wuerde I are pleased.If you should have been written down by me several times, then please I you to excuse me this that was not intended. The reason for my anonymity is the fact that with such Fragenstellerei, understandably, fast after the call the Psychatrie loud becomes. Which also method hat(ist). If you should feel the Mail as annoyance, I would like to apologize hereby for it! Big is watching you? Veuillez excuser le dérangement! Moi quelque chose concernant des oreilles est venu. Une cuisine de bruit relativement inhabituelle, dont on m'a placé un Sueppchen schwerverdauliches devant, est la raison de mes Mail.Aucune expression n'est peu appétissante! Il est possible sur un Wege(in funktechnischem pour quelles réponses fréquentielles?) quelqu'un influencer ou manipuler? Ou même schikanieren et terroriser? Sous le Motto:"Einen au Sender?Nich tout à fait seulement? Petits Mannim Ohr?Falsche Wellenlaenge?Bohnen dans les oreilles? Sur la dent gefuehlt(Amalgam)?Mal non contraignant reinhoeren? Le Pullacher Wanzentanz? Le Spinnerei?Das n'est-il quand même pas du tout va, ou? Et si comme cela paraît éthiquement moralement? Au côté technique de la chose, il y a certes des rapports et des Webseiten: Totalitaer,de - Die Waffe gegen die Kritik http://www.fosar-bludorf.com/Tempelhof/ http://jya.com/haarp.htm http://www.zeitenschrift.at/magazin/zs_24_15/1_mikrowaffen.htm http://www.bse-plus.de/d/doc/lbrief/lbmincontr.htm http://home.nexgo.de/kraven/bigb/big3.html http://w3.nrl.navy.mil/projects/haarp/index.html http://cryptome.org/ http://www.parascope.com/ds/mkultra0.htm http://www.trufax.org/menu/mind.html http://www.trufax.org/menu/elect.html http://mindcontrolforum.com/ http://www.trufax.org/menu/elect.html usw. usw. usw. toutefois qui ne peut quand même pas être qui on fait soetwas, ou? Une violation des droits de l'homme séparer ressembler!?! Il est possible, par la préparation, des oreilles et dans l'effet avec la prothèse dentaire éventuellement existante? Avec la technique de radio relativement simple?? Dans ce Land?Hier et aujourd'hui Sous quels motifs? Où le département est-il en réalité 5 du BND et de la protection d'constitution? peut il être qu'il y a les personnes qui livrent en permanence le BND/Verfassungsschutz, de manière funktechnischem un rapport de situation, sans le remarquer le -même , dans l'enfance rendu possible?? Par de tels collaborateurs officieux, avec le BND et la protection d'constitution, après manière, des informations sont-elles rassemblées et plus de, purement théoriquement, chaque citoyen allemand? Il y a alors encore un droit à des Privatsphere? Qui contrôle en réalité le BND, mad et protection d'constitution sur une infiltration??? Il s'agit en réalité dans le Mail me la question de savoir si lui éléments criminels, dont le motif de l'enrichissement, ou de groupements des motifs idéologiques, possible de s'acquérir le savoir et la technique qui à d'autres temps, est autre MotivenEt place-t-il le savoir technique dont le public vraiment la fin la barre de drapeau a connaissance ? Il n'est pas donc exactement la même chose possible pour des éléments criminels, moi cela maintenant fois verharmlost et minimisant une légende, personnes ou groupes particuliers avec des moyens relativement simples, de quels motifs aussi toujours, auszuspionieren?(Westfernsehen?), a été développé. Et ce "Ausspioniererei" ne représente-t-il pas une intervention considérable dans la vie privée? Il est possible personnes ou groupes particuliers, pour certain Oeffentlichkeit(suggeriert?), celui p. ex. à l'aide des côtés Internet, comme par exemple "le Pranger"geschaffen pourrait, fois vorausgestzt schikanieren terroriesieren et ou , et qui toute (suggerierten)Oeffentlichkeit?Haben les personnes ceux là, ou d'un autre côté verunglimpft, ou on ne pas calomnie, en réalité une chance au Gegenoeffentlichkeit?Ist qui meurtre d'appel? Il y a quelques années, je ne suis pas encore par hasard sur le côté "celui" poussé, fonctionnais alors cela sous la couche de pont de l'entremise partenaire. Des personnes particulières, ou des communautés d'intérêts le peuventelles, d'un autobut pur, de tels côtés servent, sous la couche de pont d'un Zivilkourage douteux, tracent plus de des campagnes de précipitation, propres intérêts tout à fait persoehnliche entremêlent? De tels côtés peuvent-ils servir à la coordination des manoeuvres criminelles? Question, est lui possibilité ou impossibilité de manipuler ou d'influencer techniquement et socialement, particulière personnes, ou aussi groupements, criminelle/ponctuel idéologique Energei dehors, , terroriser ou schickanieren, et ce.Une manipulation de groupe cible par des masse-médias être la manipulation quotidienne qui peut extraire mansich, plus ou moins. Le droit à la vie privée est-il miné, ramment, tiefenpsychologisch, par des envois, comme, par exemple "des Big brother"? Avec un les Angemailten si un certain savoir devait exister sur le thème, je serais heureux sur des indications sur le thème.Sur la recherche des réponses à mes questions je différentes adresses maile d'Internet dessus, et espère réponses et critiques aufkonstruktive. Sur une visite du côté http://hometown.aol.de/reinerhohn38259/homepage/index.html> je me réjouirais. Si vous deviez avoir été écrit à différentes reprises par moi, je vous demande de m'excuser cela qui n'était pas envisagé. La raison de mon anonymat est le fait qu'avec telle des Fragenstellerei, l'appel devient ce qui est bien compréhensible, rapidement bruyant après le Psychatrie. Ce que la méthode a également (ist). Si vous deviez ressentir les Mail comme un ennui, je voudrais m'excuser par ceci pour cela! Big brother is watching you? Könnte mir jemand bei der korrekten Überstzung helfen? Could someone help me with the correct translation? Quelqu'un pourrait-il m'aider lors du Ueberstzung correct? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message From owner-freebsd-isp Sat Jun 15 8:36:29 2002 Delivered-To: freebsd-isp@freebsd.org Received: from aurora.siteplus.com (aurora.siteplus.com [66.129.2.160]) by hub.freebsd.org (Postfix) with ESMTP id B258537B42C for ; Sat, 15 Jun 2002 08:36:16 -0700 (PDT) Received: from veager.jwweeks.com (pcp01076331pcs.midval01.tn.comcast.net [68.59.219.194]) by aurora.siteplus.com (8.9.3/8.9.3) with ESMTP id LAA99014 for ; Sat, 15 Jun 2002 11:35:19 -0400 (EDT) (envelope-from jim@jwweeks.com) Date: Sat, 15 Jun 2002 11:35:04 -0400 (EDT) From: jim To: freebsd-isp@freebsd.org Subject: time accounting Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This isn't a FreeBSD question, but I am sure I'm not the only one with this problem. Does anyone know of something that can be used to keep track of consulting time? Something that could keep track of client names, started, stopped easily while on the phone? I thought it would be worth a shot before I whip out some sort of script. Thanks for you indulgence, -- Jim Weeks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message