From owner-freebsd-test@FreeBSD.ORG Sun Aug 24 15:22:16 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B6B316A4BF for ; Sun, 24 Aug 2003 15:22:16 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3B9B43F85 for ; Sun, 24 Aug 2003 15:22:14 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id DA24E167677 for ; Mon, 25 Aug 2003 00:22:13 +0200 (CEST) Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.9/8.12.9) with ESMTP id h7OMMCq8037442 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO) for ; Mon, 25 Aug 2003 00:22:13 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock Organization: FreeBSD To: freebsd-test@freebsd.org Date: Mon, 25 Aug 2003 00:22:08 +0200 User-Agent: KMail/1.5.3 MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-03=_UqTS/zMruhwbgiL"; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200308250022.12524.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new Subject: Test X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: lofi@freebsd.org List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Aug 2003 22:22:16 -0000 --Boundary-03=_UqTS/zMruhwbgiL Content-Type: multipart/mixed; boundary="Boundary-01=_QqTS/t5CR7iqyeX" Content-Transfer-Encoding: 7bit Content-Description: signed data Content-Disposition: inline --Boundary-01=_QqTS/t5CR7iqyeX Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Description: body text Content-Disposition: inline =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-01=_QqTS/t5CR7iqyeX Content-Type: text/x-diff; charset="us-ascii"; name="konsole.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="konsole.diff" Index: TEPty.cpp =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/kde/kdebase/konsole/konsole/TEPty.cpp,v retrieving revision 1.75 diff -u -3 -p -r1.75 TEPty.cpp =2D-- TEPty.cpp 22 Nov 2002 13:17:57 -0000 1.75 +++ TEPty.cpp 24 Aug 2003 21:44:00 -0000 @@ -65,6 +65,9 @@ #include #endif =20 +// Get the Q_OS_* defines +#include + #ifdef __sgi #define __svr4__ #endif @@ -88,6 +91,10 @@ #include #endif =20 +#ifdef Q_OS_FREEBSD +#include +#endif + #include #include =20 @@ -198,9 +205,30 @@ public: =20 FILE* syslog_file =3D NULL; //stdout; =20 =2D#define PTY_FILENO 3 +#define DEFAULT_PTY_FILENO 3 +int PTY_FILENO =3D -1; // None allocated yet. + #define BASE_CHOWN "konsole_grantpty" =20 +void TEPtyInit() +{ +/* +** FreeBSD can't dup2(fd,3) because fd 3 is already in use by +** some weird pipe. So instead, we get a new throwaway fd +** that's not in use by anyone. +*/ +#ifdef Q_OS_FREEBSD + PTY_FILENO =3D open("/dev/null",O_RDWR); + if (PTY_FILENO =3D=3D -1) { + perror("konsole:open PTY"); + /* This won't work either, but hey .. */ + PTY_FILENO =3D DEFAULT_PTY_FILENO; + } +#else + PTY_FILENO =3D DEFAULT_PTY_FILENO; +#endif +} + int chownpty(int fd, bool grant) // param fd: the fd of a master pty. // param grant: true to grant, false to revoke @@ -212,6 +240,8 @@ int chownpty(int fd, bool grant) newsa.sa_flags =3D 0; sigaction(SIGCHLD, &newsa, &oldsa); =20 + if (PTY_FILENO =3D=3D -1) TEPtyInit(); + pid_t pid =3D fork(); if (pid < 0) { @@ -225,7 +255,12 @@ int chownpty(int fd, bool grant) /* We pass the master pseudo terminal as file descriptor PTY_FILENO. */ if (fd !=3D PTY_FILENO && dup2(fd, PTY_FILENO) < 0) exit(1); QString path =3D locate("exe", BASE_CHOWN); =2D execle(path.ascii(), BASE_CHOWN, grant?"--grant":"--revoke", NULL, N= ULL); + /* + ** Because konsole_grantpty now can't expect the fd + ** to be constant, we need an additional parameter. + */ + QString fdnumber =3D QString::number(PTY_FILENO); + execle(path.ascii(), BASE_CHOWN, grant?"--grant":"--revoke", fdnumber.= ascii(), NULL, NULL); exit(1); // should not be reached } =20 @@ -486,6 +521,16 @@ int TEPty::makePty(bool _addutmp) // open and set all standard files to slave tty int tt =3D m_SlaveFd; // Already opened? =20 +#ifdef Q_OS_FREEBSD + /* + ** It seems to be possible for SlaveFd to be closed in error + ** somewhere along the line. So check it for "liveness". + */ + struct stat sb; + if (fstat(tt,&sb)!=3D0) + tt=3D-1; // Apparently not alive. +#endif + if (tt < 0) tt =3D open(ttynam, O_RDWR); =20 @@ -524,14 +569,57 @@ int TEPty::makePty(bool _addutmp) } strncpy(l_struct.ut_name, str_ptr, UT_NAMESIZE); =20 +#ifdef Q_OS_FREEBSD + /* FreeBSD until august 22, 2003 returned ENOMEM for too-long + ** hostnames. Then sanity prevailed (?) and the error was changed + ** to NAMETOOLONG, but this breaks konsole .. again. + ** + ** Instead of bailing out with long hostnames, put in partial + ** hostnames (the first UT_HOSTSIZE characters) instead. + */ + char hostnamebuffer[MAXHOSTNAMELEN+1]; + memset(hostnamebuffer,0,MAXHOSTNAMELEN+1); + if (gethostname(hostnamebuffer, MAXHOSTNAMELEN) =3D=3D -1) + { + if ( (errno=3D=3DENOMEM) || (errno=3D=3DENAMETOOLONG) ) { + /* ignore it, but very odd */ + } + else { + /* Not much chance of this being visible anywhere ... */ + perror("konsole:gethostname"); + abort(); + } + } + /* Copy hostname, possibly only partially */ + memset(l_struct.ut_host,0,UT_HOSTSIZE); + strncpy(l_struct.ut_host,hostnamebuffer,UT_HOSTSIZE); + l_struct.ut_host[UT_HOSTSIZE]=3D0; +#else + /* Non-FreeBSD systems */ if (gethostname(l_struct.ut_host, UT_HOSTSIZE) =3D=3D -1) { =2D if (errno !=3D ENOMEM) + if (errno !=3D ENOMEM) abort(); l_struct.ut_host[UT_HOSTSIZE]=3D0; } +#endif =20 if (! (str_ptr=3Dttyname(tt)) ) { +#ifdef Q_OS_FREEBSD + /* + ** In FreeBSD, the ttyname() call always returns NULL + ** for the kinds of devices (ptys) we have opened, + ** so don't abort, use a foolish default value instead. + ** The call to login() probably won't work _anyway_, + ** since normally users can't update the wtmp file. + ** + ** If we were real sticklers for accuracy, we'd copy the + ** code from konsole_grantpty that does it's darndest to + ** file out the right tty name. + */ + str_ptr =3D const_cast("/dev/konsole"); +#else abort(); +#endif } if (strncmp(str_ptr, "/dev/", 5) =3D=3D 0) str_ptr +=3D 5; @@ -607,7 +695,7 @@ void TEPty::startPgm(const char* pgm, QV // #define CERASE 0177 // #endif =20 =2D#if defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD_= _) || defined (__bsdi__) || defined(__APPLE__) +#if defined (Q_OS_FREEBSD) || defined (__NetBSD__) || defined (__OpenBSD__= ) || defined (__bsdi__) || defined(__APPLE__) ioctl(0,TIOCGETA,(char *)&ttmode); #else # if defined (_HPUX_SOURCE) || defined(__Lynx__) @@ -621,7 +709,7 @@ void TEPty::startPgm(const char* pgm, QV ttmode.c_cc[VINTR] =3D CTRL('C'); ttmode.c_cc[VQUIT] =3D CTRL('\\'); ttmode.c_cc[VERASE] =3D 0177; =2D#if defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD_= _) || defined (__bsdi__) || defined(__APPLE__) +#if defined (Q_OS_FREEBSD) || defined (__NetBSD__) || defined (__OpenBSD__= ) || defined (__bsdi__) || defined(__APPLE__) ioctl(0,TIOCSETA,(char *)&ttmode); #else # ifdef _HPUX_SOURCE Index: konsole_grantpty.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/kde/kdebase/konsole/konsole/Attic/konsole_grantpty.c,v retrieving revision 1.7 diff -u -3 -p -r1.7 konsole_grantpty.c =2D-- konsole_grantpty.c 2 Sep 2002 01:09:24 -0000 1.7 +++ konsole_grantpty.c 24 Aug 2003 21:44:01 -0000 @@ -40,7 +40,9 @@ # include #endif =20 =2D#define PTY_FILENO 3 /* keep in sync with grantpty */ +#define DEFAULT_PTY_FILENO 3 /* keep in sync with TEPty.cpp */ +int PTY_FILENO =3D DEFAULT_PTY_FILENO; + #define TTY_GROUP "tty" =20 int main (int argc, char *argv[]) @@ -52,11 +54,13 @@ int main (int argc, char *argv[]) uid_t uid; mode_t mod; char* tty; + int command_fd; /* which fd to use? */ =20 /* check preconditions *************************************************= */ =2D if (argc !=3D 2 || (strcmp(argv[1],"--grant") && strcmp(argv[1],"--rev= oke"))) + if (( (argc !=3D 3) && (argc !=3D 2) /* optional third arg */ ) ||=20 + (strcmp(argv[1],"--grant") && strcmp(argv[1],"--revoke"))) { =2D printf("usage: %s (--grant|--revoke)\n",argv[0]); + printf("usage: %s (--grant|--revoke) [fd]\n",argv[0]); printf("%s is a helper for\n",argv[0]); printf("konsole and not intented to\n"); printf("be called from the command\n"); @@ -83,6 +87,22 @@ int main (int argc, char *argv[]) uid =3D 0; /* root */ mod =3D S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH; } + + command_fd =3D DEFAULT_PTY_FILENO; + if (argv[2]) + { + command_fd =3D atoi(argv[2]); + } + if (command_fd > 2) /* must be out of stdin,stdout,stderr range */ + { + PTY_FILENO=3Dcommand_fd; + } + else + { + fprintf(stderr,"%s: Bad command fd (seems to be %d)\n",argv[0],command= _fd); + return 1; + } + =20 /* Get the group ID of the special `tty' group. */ p =3D getgrnam(TTY_GROUP); /* posix */ gid =3D p ? p->gr_gid : getgid (); /* posix */ @@ -117,6 +137,9 @@ int main (int argc, char *argv[]) if (dirp->d_fileno !=3D dsb.st_ino) continue; { + /* Else this is the right device file .. any possible memory + ** leak here because two files match is unimportant? + */ int pdlen =3D strlen(_PATH_DEV), namelen =3D strlen(dirp->d_name); pty =3D malloc(pdlen + namelen + 1); if (pty) { Index: main.cpp =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/kde/kdebase/konsole/konsole/main.cpp,v retrieving revision 1.243.2.3 diff -u -3 -p -r1.243.2.3 main.cpp =2D-- main.cpp 29 Jun 2003 21:53:11 -0000 1.243.2.3 +++ main.cpp 24 Aug 2003 21:44:02 -0000 @@ -123,6 +123,7 @@ public: }; =20 =20 +extern void TEPtyInit(); =20 /* --| main |------------------------------------------------------ */ int main(int argc, char* argv[]) @@ -137,6 +138,7 @@ int main(int argc, char* argv[]) bool scrollbaron =3D true; QCString wname =3D PACKAGE; =20 + TEPtyInit(); =20 KAboutData aboutData( PACKAGE, I18N_NOOP("Konsole"), VERSION, description, KAboutData::License_GPL_V2, --Boundary-01=_QqTS/t5CR7iqyeX-- --Boundary-03=_UqTS/zMruhwbgiL Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/STqUXhc68WspdLARAuXnAJ9ZBx435cm/5IR3qISU8eOEFXA+0QCdHDjz kgJ0cI+86rPEmQWwoghdRhs= =gj7W -----END PGP SIGNATURE----- --Boundary-03=_UqTS/zMruhwbgiL-- From owner-freebsd-test@FreeBSD.ORG Sun Aug 24 15:39:23 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F89916A4E2 for ; Sun, 24 Aug 2003 15:39:23 -0700 (PDT) Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11AA843FB1 for ; Sun, 24 Aug 2003 15:39:22 -0700 (PDT) (envelope-from freebsd-test@m.gmane.org) Received: from root by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 19r3Wu-0007bd-00 for ; Mon, 25 Aug 2003 00:40:12 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-test@freebsd.org Received: from sea.gmane.org ([80.91.224.252]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19r3CZ-0007Np-00 for ; Mon, 25 Aug 2003 00:19:11 +0200 Received: from news by sea.gmane.org with local (Exim 3.35 #1 (Debian)) id 19r3Bj-0002q5-00 for ; Mon, 25 Aug 2003 00:18:19 +0200 From: Gerd Geppert Date: Mon, 25 Aug 2003 00:11:15 +0200 Organization: unorganized Lines: 8 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@sea.gmane.org User-Agent: slrn/0.9.7.4 (FreeBSD) Sender: news Subject: was wohl? X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Aug 2003 22:39:23 -0000 Test, natürlich. -- begin workearound.URL M6TEN=&5R;F5T4VAO#]S8VED/6MB.T5.+553.W$R-C4R,S`*"@`` ` end From owner-freebsd-test@FreeBSD.ORG Sun Aug 24 15:59:14 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4150716A4BF for ; Sun, 24 Aug 2003 15:59:14 -0700 (PDT) Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92E5543FA3 for ; Sun, 24 Aug 2003 15:59:13 -0700 (PDT) (envelope-from freebsd-test@m.gmane.org) Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 19r3q8-0007lI-00 for ; Mon, 25 Aug 2003 01:00:04 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-test@freebsd.org Received: from sea.gmane.org ([80.91.224.252]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19r3q6-0007lA-00 for ; Mon, 25 Aug 2003 01:00:02 +0200 Received: from news by sea.gmane.org with local (Exim 3.35 #1 (Debian)) id 19r3pG-0003at-00 for ; Mon, 25 Aug 2003 00:59:10 +0200 From: Gerd Geppert Date: Mon, 25 Aug 2003 01:00:04 +0200 Organization: unorganized Lines: 11 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@sea.gmane.org User-Agent: slrn/0.9.7.4 (FreeBSD) Sender: news Subject: Re: was wohl? X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Aug 2003 22:59:14 -0000 Gerd Geppert writes: > > Test, natürlich. ÖÄܤ -- begin workearound.URL M6TEN=&5R;F5T4VAO#]S8VED/6MB.T5.+553.W$R-C4R,S`*"@`` ` end From owner-freebsd-test@FreeBSD.ORG Mon Aug 25 06:53:52 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F1A116A4BF for ; Mon, 25 Aug 2003 06:53:52 -0700 (PDT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94C2343FDD for ; Mon, 25 Aug 2003 06:53:47 -0700 (PDT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id h7PE1UMa017797 for ; Mon, 25 Aug 2003 11:01:30 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.9/8.12.9) with ESMTP id h7PDsYx9034590 for ; Mon, 25 Aug 2003 10:54:35 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.9/8.12.9/Submit) id h7PDsVqn034589 for freebsd-test@freebsd.org; Mon, 25 Aug 2003 10:54:31 -0300 (ART) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Mon, 25 Aug 2003 10:54:31 -0300 From: Fernan Aguero To: freebsd-test@freebsd.org Message-ID: <20030825135431.GA34291@iib.unsam.edu.ar> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Subject: test X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Aug 2003 13:53:52 -0000 another test -- F e r n a n A g u e r o http://genoma.unsam.edu.ar/~fernan From owner-freebsd-test@FreeBSD.ORG Mon Aug 25 18:43:01 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94F4016A4BF for ; Mon, 25 Aug 2003 18:43:01 -0700 (PDT) Received: from lakecmmtao02.coxmail.com (lakecmmtao02.coxmail.com [68.99.120.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B0AA43FBF for ; Mon, 25 Aug 2003 18:42:58 -0700 (PDT) (envelope-from neal@kossweb.net) Received: from nk.kossweb.net ([68.15.85.226]) by lakecmmtao02.coxmail.com ESMTP <20030826014251.EJGT18458.lakecmmtao02.coxmail.com@nk.kossweb.net> for ; Mon, 25 Aug 2003 21:42:51 -0400 Message-Id: <5.2.1.1.0.20030825184038.03e53de0@127.0.0.1> X-Sender: mail.kossweb.net:neal@127.0.0.1 X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Mon, 25 Aug 2003 18:40:53 -0700 To: freebsd-test@freebsd.org From: Neal Koss Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: test coxmail X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Aug 2003 01:43:01 -0000 using coxmail ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Neal Koss, MD (W)310-530-4200 ____ ___ _______ Eudora Pro 5.2 (H)310-541-6939 / __/______ ___ / _ )/ __/ _ \ &nbs= p; FAX: 541-4399 / _// __/ -_) -_) _ |\ \/ // / Photo Albums - [1]http://kosswe= b.net /_/ /_/ \__/\__/____/___/____/ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Windows N'T: as in Wouldn't, Couldn't, and Didn't. References 1. 3D"http://kossweb.net=A0=A0=A0=A0/" From owner-freebsd-test@FreeBSD.ORG Mon Aug 25 18:43:04 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ECFD16A4BF for ; Mon, 25 Aug 2003 18:43:04 -0700 (PDT) Received: from lakecmmtao02.coxmail.com (lakecmmtao02.coxmail.com [68.99.120.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC5A943FE5 for ; Mon, 25 Aug 2003 18:43:02 -0700 (PDT) (envelope-from neal@kossweb.net) Received: from nk.kossweb.net ([68.15.85.226]) by lakecmmtao02.coxmail.com ESMTP <20030826014255.EJGX18458.lakecmmtao02.coxmail.com@nk.kossweb.net> for ; Mon, 25 Aug 2003 21:42:55 -0400 Message-Id: <5.2.1.1.0.20030825184240.03e988b0@127.0.0.1> X-Sender: mail.kossweb.net:neal@127.0.0.1 X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Mon, 25 Aug 2003 18:42:53 -0700 To: freebsd-test@freebsd.org From: Neal Koss Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: test coxmail X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Aug 2003 01:43:04 -0000 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Neal Koss, MD (W)310-530-4200 ____ ___ _______ Eudora Pro 5.2 (H)310-541-6939 / __/______ ___ / _ )/ __/ _ \ &nbs= p; FAX: 541-4399 / _// __/ -_) -_) _ |\ \/ // / Photo Albums - [1]http://kosswe= b.net /_/ /_/ \__/\__/____/___/____/ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Windows N'T: as in Wouldn't, Couldn't, and Didn't. References 1. 3D"http://kossweb.net=A0=A0=A0=A0/" From owner-freebsd-test@FreeBSD.ORG Tue Aug 26 11:43:20 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D938A16A4BF for ; Tue, 26 Aug 2003 11:43:20 -0700 (PDT) Received: from mta7.adelphia.net (mta7.adelphia.net [68.168.78.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BD5443FDF for ; Tue, 26 Aug 2003 11:43:20 -0700 (PDT) (envelope-from wmoran@potentialtech.com) Received: from potentialtech.com ([24.53.179.151]) by mta7.adelphia.net (InterMail vM.5.01.05.32 201-253-122-126-132-20030307) with ESMTP id <20030826184320.WZUU18798.mta7.adelphia.net@potentialtech.com> for ; Tue, 26 Aug 2003 14:43:20 -0400 Message-ID: <3F4BAA47.80400@potentialtech.com> Date: Tue, 26 Aug 2003 14:43:19 -0400 From: Bill Moran User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030429 X-Accept-Language: en-us, en MIME-Version: 1.0 To: test@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Test to see if Adelphia's smtp servers are hosed again X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Aug 2003 18:43:21 -0000 -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-test@FreeBSD.ORG Fri Aug 29 00:49:09 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDD9B16A4BF for ; Fri, 29 Aug 2003 00:49:09 -0700 (PDT) Received: from pukruppa.net (reverse-213-146-114-24.dialin.kamp-dsl.de [213.146.114.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DDC243F3F for ; Fri, 29 Aug 2003 00:49:08 -0700 (PDT) (envelope-from root@pukruppa.net) Received: from pukruppa.net (localhost.pukruppa.net [127.0.0.1]) by pukruppa.net (8.12.9/8.12.9) with ESMTP id h7T7nn4G000716; Fri, 29 Aug 2003 09:49:49 +0200 (CEST) (envelope-from root@pukruppa.net) Received: (from root@localhost) by pukruppa.net (8.12.9/8.12.9/Submit) id h7T7nnpY000715; Fri, 29 Aug 2003 09:49:49 +0200 (CEST) Date: Fri, 29 Aug 2003 09:49:49 +0200 (CEST) From: Peter Ulrich Kruppa Message-Id: <200308290749.h7T7nnpY000715@pukruppa.net> To: test03@pukruppa.net, -s@pukruppa.net, freebsd-test@freebsd.org Subject: X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Aug 2003 07:49:10 -0000 From owner-freebsd-test@FreeBSD.ORG Fri Aug 29 00:52:19 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EA9E16A4BF for ; Fri, 29 Aug 2003 00:52:19 -0700 (PDT) Received: from pukruppa.net (reverse-213-146-114-24.dialin.kamp-dsl.de [213.146.114.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C0D943F93 for ; Fri, 29 Aug 2003 00:52:18 -0700 (PDT) (envelope-from root@pukruppa.net) Received: from pukruppa.net (localhost.pukruppa.net [127.0.0.1]) by pukruppa.net (8.12.9/8.12.9) with ESMTP id h7T7qx4G000738 for ; Fri, 29 Aug 2003 09:53:00 +0200 (CEST) (envelope-from root@pukruppa.net) Received: (from root@localhost) by pukruppa.net (8.12.9/8.12.9/Submit) id h7T7qxlI000737 for freebsd-test@freebsd.org; Fri, 29 Aug 2003 09:52:59 +0200 (CEST) Date: Fri, 29 Aug 2003 09:52:59 +0200 (CEST) From: Peter Ulrich Kruppa Message-Id: <200308290752.h7T7qxlI000737@pukruppa.net> To: freebsd-test@freebsd.org Subject: test04 X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Aug 2003 07:52:19 -0000 direkt an die Liste From owner-freebsd-test@FreeBSD.ORG Fri Aug 29 00:55:07 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D44116A4BF for ; Fri, 29 Aug 2003 00:55:07 -0700 (PDT) Received: from dsl-mail.kamp.net (mail.kamp-dsl.de [195.62.99.42]) by mx1.FreeBSD.org (Postfix) with SMTP id 44EA143FE0 for ; Fri, 29 Aug 2003 00:55:06 -0700 (PDT) (envelope-from root@pukruppa.de) Received: (qmail 32396 invoked by uid 505); 29 Aug 2003 07:55:08 -0000 Received: from root@pukruppa.de by dsl-mail by uid 502 with qmail-scanner-1.14 (spamassassin: 2.43. Clear:. Processed in 0.135763 secs); 29 Aug 2003 07:55:08 -0000 Received: from unknown (HELO reverse-213-146-114-24.dialin.kamp-dsl.de) (213.146.114.24) by dsl-mail.kamp.net with SMTP; 29 Aug 2003 07:55:08 -0000 Date: Fri, 29 Aug 2003 09:55:47 +0200 (CEST) From: "Peter Ulrich Kruppa " X-X-Sender: root@pukruppa.net To: Peter Ulrich Kruppa In-Reply-To: <200308290752.h7T7qxlI000737@pukruppa.net> Message-ID: <20030829095528.I708@pukruppa.net> References: <200308290752.h7T7qxlI000737@pukruppa.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-test@freebsd.org Subject: Re: test04 X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Aug 2003 07:55:07 -0000 On Fri, 29 Aug 2003, Peter Ulrich Kruppa wrote: > direkt an die Liste Antwort darauf > _______________________________________________ > freebsd-test@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-test > To unsubscribe, send any mail to "freebsd-test-unsubscribe@freebsd.org" > +---------------------------+ | Peter Ulrich Kruppa | | Wuppertal | | Germany | +---------------------------+ From owner-freebsd-test@FreeBSD.ORG Fri Aug 29 01:05:33 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E098116A4BF for ; Fri, 29 Aug 2003 01:05:33 -0700 (PDT) Received: from pukruppa.net (reverse-213-146-114-24.dialin.kamp-dsl.de [213.146.114.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id A267943FEA for ; Fri, 29 Aug 2003 01:05:32 -0700 (PDT) (envelope-from root@pukruppa.net) Received: from pukruppa.net (localhost.pukruppa.net [127.0.0.1]) by pukruppa.net (8.12.9/8.12.9) with ESMTP id h7T86F4G000829 for ; Fri, 29 Aug 2003 10:06:15 +0200 (CEST) (envelope-from root@pukruppa.net) Received: (from root@localhost) by pukruppa.net (8.12.9/8.12.9/Submit) id h7T86ExW000828 for freebsd-test@freebsd.org; Fri, 29 Aug 2003 10:06:14 +0200 (CEST) Date: Fri, 29 Aug 2003 10:06:14 +0200 (CEST) From: Peter Ulrich Kruppa Message-Id: <200308290806.h7T86ExW000828@pukruppa.net> To: freebsd-test@freebsd.org Subject: test05 X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Aug 2003 08:05:34 -0000 hallo From owner-freebsd-test@FreeBSD.ORG Fri Aug 29 01:07:02 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB3F716A4BF for ; Fri, 29 Aug 2003 01:07:02 -0700 (PDT) Received: from pukruppa.net (reverse-213-146-114-24.dialin.kamp-dsl.de [213.146.114.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B1CA43FBD for ; Fri, 29 Aug 2003 01:07:01 -0700 (PDT) (envelope-from root@pukruppa.net) Received: from pukruppa.net (localhost.pukruppa.net [127.0.0.1]) by pukruppa.net (8.12.9/8.12.9) with ESMTP id h7T87i4G000839 for ; Fri, 29 Aug 2003 10:07:44 +0200 (CEST) (envelope-from root@pukruppa.net) Received: (from root@localhost) by pukruppa.net (8.12.9/8.12.9/Submit) id h7T87iK5000838 for freebsd-test@freebsd.org; Fri, 29 Aug 2003 10:07:44 +0200 (CEST) Date: Fri, 29 Aug 2003 10:07:44 +0200 (CEST) From: Peter Ulrich Kruppa Message-Id: <200308290807.h7T87iK5000838@pukruppa.net> To: freebsd-test@freebsd.org Subject: test07 X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Aug 2003 08:07:02 -0000 hallo From owner-freebsd-test@FreeBSD.ORG Fri Aug 29 01:07:51 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7BCA16A4BF for ; Fri, 29 Aug 2003 01:07:51 -0700 (PDT) Received: from pukruppa.net (reverse-213-146-114-24.dialin.kamp-dsl.de [213.146.114.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7082B44003 for ; Fri, 29 Aug 2003 01:07:50 -0700 (PDT) (envelope-from kruppa@pukruppa.net) Received: from pukruppa.net (localhost.pukruppa.net [127.0.0.1]) by pukruppa.net (8.12.9/8.12.9) with ESMTP id h7T88X4G000847; Fri, 29 Aug 2003 10:08:33 +0200 (CEST) (envelope-from kruppa@pukruppa.net) Received: (from kruppa@localhost) by pukruppa.net (8.12.9/8.12.9/Submit) id h7T88X6q000846; Fri, 29 Aug 2003 10:08:33 +0200 (CEST) Date: Fri, 29 Aug 2003 10:08:33 +0200 (CEST) From: Peter Ulrich Kruppa Message-Id: <200308290808.h7T88X6q000846@pukruppa.net> To: freebsd-test@freebsd.org, root@pukruppa.net In-Reply-To: <200308290807.h7T87iK5000838@pukruppa.net> Subject: Re: test07 X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Aug 2003 08:07:51 -0000 Ihr sollt nicht immer als root mailen. From owner-freebsd-test@FreeBSD.ORG Fri Aug 29 01:10:03 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F12516A4BF for ; Fri, 29 Aug 2003 01:10:03 -0700 (PDT) Received: from pukruppa.net (reverse-213-146-114-24.dialin.kamp-dsl.de [213.146.114.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB6E543FF2 for ; Fri, 29 Aug 2003 01:10:01 -0700 (PDT) (envelope-from root@pukruppa.net) Received: from pukruppa.net (localhost.pukruppa.net [127.0.0.1]) by pukruppa.net (8.12.9/8.12.9) with ESMTP id h7T8Aj4G000859; Fri, 29 Aug 2003 10:10:45 +0200 (CEST) (envelope-from root@pukruppa.net) Received: (from root@localhost) by pukruppa.net (8.12.9/8.12.9/Submit) id h7T8Aixj000858; Fri, 29 Aug 2003 10:10:44 +0200 (CEST) Date: Fri, 29 Aug 2003 10:10:44 +0200 (CEST) From: Peter Ulrich Kruppa Message-Id: <200308290810.h7T8Aixj000858@pukruppa.net> To: freebsd-test@freebsd.org, kruppa@pukruppa.net, root@pukruppa.net In-Reply-To: <200308290808.h7T88X6q000846@pukruppa.net> Subject: Re: test07 X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Aug 2003 08:10:03 -0000 Wieso? From owner-freebsd-test@FreeBSD.ORG Fri Aug 29 12:38:26 2003 Return-Path: Delivered-To: freebsd-test@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7273C16A4BF; Fri, 29 Aug 2003 12:38:26 -0700 (PDT) Received: from pd5mo1so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C86C43FFB; Fri, 29 Aug 2003 12:38:25 -0700 (PDT) (envelope-from desmond.lee@shaw.ca) Received: from pd3mr2so.prod.shaw.ca (pd3mr2so-ser.prod.shaw.ca [10.0.141.178])2003)) with ESMTP id <0HKE0058IBKUHY@l-daemon>; Fri, 29 Aug 2003 13:31:42 -0600 (MDT) Received: from pn2ml8so.prod.shaw.ca (pn2ml8so-qfe0.prod.shaw.ca [10.0.121.152]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HKE004OVBKUCL@l-daemon>; Fri, 29 Aug 2003 13:31:42 -0600 (MDT) Received: from croydon (h24-83-94-81.vs.shawcable.net [24.83.94.81]) 2003)) with ESMTP id <0HKE00G1FBKL0R@l-daemon>; Fri, 29 Aug 2003 13:31:42 -0600 (MDT) Date: Fri, 29 Aug 2003 12:31:32 -0700 From: Desmond Lee To: freebsd-test@freebsd.org Message-id: <006801c36e64$2a7d5e30$6501a8c0@croydon> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Mailer: Microsoft Outlook, Build 10.0.2616 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal cc: postmaster@catwhisker.org cc: postmaster@freebsd.org Subject: testing X-BeenThere: freebsd-test@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Test posting area List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Aug 2003 19:38:26 -0000 This is just a test