Re: test if script called by cron

2013-09-16 Thread aurfalien
An easy way to do this is check /var/log/cron

There are many other ways. 

- aurf

On Sep 16, 2013, at 4:26 AM, Paul Macdonald wrote:

> 
> Hi,
> 
> Is there a simple way of testing whether a given script was called via cron,
> 
> I'd rather find a solution that would work from within the script rather than 
> setting an environment variable in the crontab.
> 
> thanks
> Paul.
> 
> (anyone here going to EuroBSD con?)
> 
> -- 
> -
> Paul Macdonald
> IFDNRG Ltd
> Web and video hosting
> -
> t: 0131 5548070
> m: 07970339546
> e: p...@ifdnrg.com
> w: http://www.ifdnrg.com
> -
> IFDNRG
> 40 Maritime Street
> Edinburgh
> EH6 6SA
> 
> High Specification Dedicated Servers from £100.00pm
> 
> 
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: test if script called by cron

2013-09-16 Thread Polytropon
On Mon, 16 Sep 2013 23:28:17 -0400, kpn...@pobox.com wrote:
> On Mon, Sep 16, 2013 at 02:05:04PM +0200, Polytropon wrote:
> > On Mon, 16 Sep 2013 12:26:59 +0100, Paul Macdonald wrote:
> > > Is there a simple way of testing whether a given script was called via 
> > > cron,
> > > 
> > > I'd rather find a solution that would work from within the script rather 
> > > than setting an environment variable in the crontab.
> > 
> > I'd suggest the script creates a file (lock file or,
> > much easier, just a simple normal file) at its beginning:
> > 
> > #!/bin/sh
> > /usr/bin/touch /tmp/scriptrun
> > # ... your script content here ...
> 
> Wouldn't the lockf command be better than touch? That way you get the
> condition code telling you whether or not the script is already running.

Yes, it would probably be better in this case. This, in
combination with the suggestion of "test-t 0" to check
if the script has been interactively called or not, looks
like a better solution.

However, the intial question does not make fully sure (at
least to me as a non-native speaker) if the intention is
(a) to check _if_ the script has been run via cron, or
(b) to check if the script has been run via _cron_. :-)



> > Of course you would have to manually remove that file
> > after you have verified its existence and content.
> 
> If you use lockf as a drop-in replacement for touch then, yes, you'll
> need to keep the lock file until removing it at the end of the script.

Depends. Let's say the script is scheduled at 3:00 and will
finish in about half an hour. The "evidence file" will only
be visible from 3:00 to ca. 3:30, so removing the "evidence
file" after the script has finished could lead to a false-negative
result ("has not been run"). This is also true for the more
simple solution using the touch command (no rm call at the
end of the script).



-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: test if script called by cron

2013-09-16 Thread Jerry
On Mon, 16 Sep 2013 12:26:59 +0100
Paul Macdonald articulated:

> 
> Hi,
> 
> Is there a simple way of testing whether a given script was called
> via cron,
> 
> I'd rather find a solution that would work from within the script
> rather than setting an environment variable in the crontab.
> 
> thanks
> Paul.
> 
> (anyone here going to EuroBSD con?)

If you want to learn if the running script was called via cron, this
would work, assuming you are running Bash.

if [[ ! -t 0 ]]; then
echo "Running from Cron"
fi

-- 
Jerry ♔

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Re: test if script called by cron

2013-09-16 Thread Dan Nelson
In the last episode (Sep 16), Paul Macdonald said:
> Is there a simple way of testing whether a given script was called via cron,
> 
> I'd rather find a solution that would work from within the script rather 
> than setting an environment variable in the crontab.

You check to see if stdin is a terminal, but that's not conclusive.  One way
to know for sure is to look at the name of the process that launched you:

if [ ! -t 0 ] ; then
 echo "no tty, possibly run from cron"
fi

parent=$(ps -o command= -p $PPID)
case $parent in 
 *cron* ) echo "parent is $parent, almost certainly cron" ;;
esac

-- 
Dan Nelson
dnel...@allantgroup.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: test if script called by cron

2013-09-16 Thread Polytropon
On Mon, 16 Sep 2013 12:26:59 +0100, Paul Macdonald wrote:
> Is there a simple way of testing whether a given script was called via cron,
> 
> I'd rather find a solution that would work from within the script rather 
> than setting an environment variable in the crontab.

I'd suggest the script creates a file (lock file or,
much easier, just a simple normal file) at its beginning:

#!/bin/sh
/usr/bin/touch /tmp/scriptrun
# ... your script content here ...

You could also output the date command to that file
to see when the script has been called:

#!/bin/sh
/bin/date "+%Y-%m-%d %H:%M:%S" > /tmp/scriptrun
# ... your script content here ...

Of course you would have to manually remove that file
after you have verified its existence and content.



-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Test

2013-06-01 Thread Chris Hill

On Sat, 1 Jun 2013, Al Plant wrote:


Ping . Pong


http://lists.freebsd.org/mailman/listinfo/freebsd-test

Mahalo.



~Al Plant - Honolulu, Hawaii -  Phone:  808-284-2740
 + http://hawaiidakine.com + http://freebsdinfo.org +
 + http://aloha50.net   - Supporting - FreeBSD  7.2 - 8.0 - 9* +
 < email: n...@hdk5.net >
"All that's really worth doing is what we do for others."- Lewis Carrol


--
Chris Hill   ch...@monochrome.org
** [ Busy Expunging  ]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Test

2012-10-18 Thread Jerry
On Thu, 18 Oct 2012 12:16:55 +0100
Paul Wootton articulated:

> Just a test message

Per URL:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/eresources.html#ERESOURCES-MAIL

Note: If you wish to test your ability to send to FreeBSD lists, send a test 
message to freebsd-test. Please do not send test messages to any other list.

-- 
Jerry ♔

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Re: Test

2012-10-18 Thread Виталий Туровец
2012/10/18 Paul Wootton :
> Just a test message
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Your test seems to be succesful :)

-- 




~~~
WBR,
Vitaliy Turovets
NOC Lead @TV-Net ISP
NOC Lead @Service Outsourcing company
+38(093)265-70-55
VITU-RIPE
X-NCC-RegID: ua.tv
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: test

2010-08-13 Thread Svein Skogen (Listmail account)
On 14.08.2010 05:23, PR wrote:
> 
> 

epic fail. ;)

//Svein

-- 
+---+---
  /"\   |Svein Skogen   | sv...@d80.iso100.no
  \ /   |Solberg Østli 9| PGP Key:  0xE5E76831
   X|2020 Skedsmokorset | sv...@jernhuset.no
  / \   |Norway | PGP Key:  0xCE96CE13
|   | sv...@stillbilde.net
 ascii  |   | PGP Key:  0x58CD33B6
 ribbon |System Admin   | svein-listm...@stillbilde.net
Campaign|stillbilde.net | PGP Key:  0x22D494A4
+---+---
|msn messenger: | Mobile Phone: +47 907 03 575
|sv...@jernhuset.no | RIPE handle:SS16503-RIPE
+---+---
 If you really are in a hurry, mail me at
   svein-mob...@stillbilde.net
 This mailbox goes directly to my cellphone and is checked
even when I'm not in front of my computer.

 Picture Gallery:
  https://gallery.stillbilde.net/v/svein/




signature.asc
Description: OpenPGP digital signature


Re: test please ignore

2009-10-14 Thread Chris Rees
2009/10/14 henter2009 :
>
> test please ignore
> --
> View this message in context: 
> http://www.nabble.com/test-please-ignore-tp25889720p25889720.html
> Sent from the freebsd-questions mailing list archive at Nabble.com.
>


This is not the list to test on.

http://lists.freebsd.org/mailman/listinfo/freebsd-test

Please use it.

Chris

-- 
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in a mailing list?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Test

2009-06-03 Thread Chris Rees
2009/6/3 Al Plant :
> Test
> --
>

Now try using freebsd-test@ ;)

Chris



-- 
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in a mailing list?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: TEST

2009-01-27 Thread nicodache
did not work. please try again.

On Tue, Jan 27, 2009 at 6:45 PM, Rem P Roberti  wrote:
> Test
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: test

2008-01-26 Thread Gary Kline
On Fri, Jan 25, 2008 at 11:52:17PM -0800, Gary Kline wrote:
> test
> -- 
> Gary Kline  [EMAIL PROTECTED]   www.thought.org  Public Service Unix
> http://jottings.thought.org   http://transfinite.thought.org


Well, surprise, surprise!  A glance at [EMAIL PROTECTED] [ rather than 
[EMAIL PROTECTED] qual'd DN] proves that the following two lines do 
force sendmail to rewrite:


aristotle.thought.org.mc:MASQUERADE_AS(`thought.org')
aristotle.thought.org.mc-FEATURE(masquerade_envelope)

Chuck, your pointer was right, but I didn't understand the fine
points.  The ``FEATURE()'' line mmust accompany the 
``MASQUERADE_AS()'' LINE.  And, obviously, with the proper strings
within the parens.  I found this on a Google listing after about
45-50 mins of searching.

This is one of those fine tidbits that aren't widely known, but 
very useful

gary

PS: Hope this works

-- 
Gary Kline  Seattle BSD Users' Group (seabug)  | [EMAIL PROTECTED]
Thought Unlimited Org's Alternate Email Site
http://www.magnesium.net/~kline
   To live is not a necessity; but to live honorably...is a necessity. -Kant

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2008-01-24 Thread Kimi
On 25/01/2008, Gary Kline <[EMAIL PROTECTED]> wrote:
>
>
> Well, yesterday when I tried mailing, i could have hit keystrokes
> until the cows came home and no characters were echoed.   Evidently,
> I did _something_ to kdemail //KMail to let this work.   Possibly after I
> pkg_deleted evolution.
>

please don't spam this list, use test@ instead :)

> hm.
>
>
> --  Forwarded Message  --
>
> Subject: test
> Date: Thursday 24 January 2008
> From: Gary Kline <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
>
> testing, surprise, surprise.
> --
> Gary Kline  [EMAIL PROTECTED]   www.thought.org  Public Service Unix
> http://jottings.thought.org   http://transfinite.thought.org
>
> ---
>
> --
> Gary Kline  [EMAIL PROTECTED]   www.thought.org  Public Service Unix
> http://jottings.thought.org   http://transfinite.thought.org
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
>


-- 
Regards,
 Kimi
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test

2007-09-18 Thread Chris Hill

On Tue, 18 Sep 2007, EaRSHoT wrote:


tets


Read The Friendly Handbook, 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/eresources.html#ERESOURCES-MAIL



Note: If you wish to test your ability to send to FreeBSD lists, send a 
test message to freebsd-test. Please do not send test messages to any 
other list.



Make special note of that last sentence.

--
Chris Hill   [EMAIL PROTECTED]
** [ Busy Expunging <|> ]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test on FreeBSD site

2007-08-25 Thread NetOpsCenter

Bill Moran wrote:


In response to NetOpsCenter <[EMAIL PROTECTED]>:

 


Aloha,

How long does it take for a test to be accepted or rejected on the 
FreeBSD test mail box?

Is three minutes normal for a test to pop up?
I had some FreeBSD 7 config issues and this nearly caused me to think I 
hadn't cleared the problem  because it took quite a while to pop up.
   



It depends on how busy the server is at the time you send it, among
other factors.  I haven't noticed if the mail servers are doing
greylisting, but it wouldn't surprise me if they were.

In this day and age, with the spam scourge and all the alleged "solutions"
that everyone's mail servers use, anything less than 10 minutes for a
delivery should be considered successful.

 


Thanks for the reply.
FreeBSD 7 is excellent. Applause  to the Developers.
I have been using FreeBSD since 2. something.

Is there a good how to set up spam assassin for  FreeBSD?  Most I have tried have no FreeBSD specific file placements listsed and I can't get it to work. 


~Al Plant - Honolulu, Hawaii -  Phone:  808-284-2740
 + http://hawaiidakine.com + http://freebsdinfo.org + [EMAIL PROTECTED] +
 + http://internetohana.org   - Supporting - FreeBSD 6.* - 7.* +
"All that's really worth doing is what we do for others."- Lewis Carrol


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test on FreeBSD site

2007-08-24 Thread Steve Bertrand
>> I haven't noticed if the mail servers are doing greylisting, but it
>> wouldn't surprise me if they were.
> 
> They do.

That's quite the response.

Care to elaborate for purposes of archive accuracy?

Steve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test on FreeBSD site

2007-08-24 Thread Giorgos Keramidas
On 2007-08-24 06:36, Bill Moran <[EMAIL PROTECTED]> wrote:
> In response to NetOpsCenter <[EMAIL PROTECTED]>:
> > How long does it take for a test to be accepted or rejected on the
> > FreeBSD test mail box?  Is three minutes normal for a test to pop
> > up?  I had some FreeBSD 7 config issues and this nearly caused me to
> > think I hadn't cleared the problem  because it took quite a while to
> > pop up.
>
> It depends on how busy the server is at the time you send it, among
> other factors.  I haven't noticed if the mail servers are doing
> greylisting, but it wouldn't surprise me if they were.

They are.  It may take a few minutes before a message gets through, but
that depends on how often the *sending* server retries.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test on FreeBSD site

2007-08-24 Thread Alex Zbyslaw

Bill Moran wrote:

I haven't noticed if the mail servers are doing greylisting, but it 
wouldn't surprise me if they were.


They do.

--Alex

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test on FreeBSD site

2007-08-24 Thread Bill Moran
In response to NetOpsCenter <[EMAIL PROTECTED]>:

> Aloha,
> 
> How long does it take for a test to be accepted or rejected on the 
> FreeBSD test mail box?
> Is three minutes normal for a test to pop up?
> I had some FreeBSD 7 config issues and this nearly caused me to think I 
> hadn't cleared the problem  because it took quite a while to pop up.

It depends on how busy the server is at the time you send it, among
other factors.  I haven't noticed if the mail servers are doing
greylisting, but it wouldn't surprise me if they were.

In this day and age, with the spam scourge and all the alleged "solutions"
that everyone's mail servers use, anything less than 10 minutes for a
delivery should be considered successful.

-- 
Bill Moran
http://www.potentialtech.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-16 Thread Bart Silverstrim


On Apr 16, 2007, at 8:52 AM, Bob Middaugh wrote:


Please don't top post.


Maybe he can't read and that's why the unsub link is useless?  That  
would also explain the top posting to a degree.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-16 Thread Bob Middaugh
Please don't top post.


Bob

 -- Original message --
From: Hangmn <[EMAIL PROTECTED]>

> You group of elitist fucks...the unsub link is FUCKING USELESS
> 
> On 4/14/07, Bill Moran <[EMAIL PROTECTED]> wrote:
> >
> > In response to Hangmn <[EMAIL PROTECTED]>:
> >
> > > GET ME OFF THIS FUCKING LIST
> >
> > That's a powerfully effective method of getting things done.
> >

> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-14 Thread Beech Rintoul
On Saturday 14 April 2007, Hangmn said:
> You group of elitist fucks...the unsub link is FUCKING USELESS
>
> On 4/14/07, Bill Moran <[EMAIL PROTECTED]> wrote:
> > In response to Hangmn <[EMAIL PROTECTED]>:
> > > GET ME OFF THIS FUCKING LIST
> >
> > That's a powerfully effective method of getting things done.
> >
> > First off, the use of the word FUCKING is a well-known method to
> > convince people to come to your aid.  I believe it was Napoleon
> > who stated, "By inserting 'FUCKING' in front of every FUCKING
> > noun in every FUCKING sentence, I have managed to motivate my
> > FUCKING soldiers more so than any other FUCKING method I have
> > tried."
> >
> > Secondly, the use of all caps is known to be an efficient method
> > of getting
> > your point across.  Internet experts agree that mailing lists are
> > very loud, and the only way you're guaranteed to be heard is to
> > SHOUT all the time.  I'm glad you've caught on to this fine point
> > of netiquette.
> >
> > Thirdly, replying to an arbitrary message instead of taking the
> > time to contact the right people is a fabulously effective method
> > of getting things
> > done.  Obviously, the guy who sent this test message, as well as
> > others who read it are most likely to be the people who can
> > actually _do_ anything
> > about your problem.
> >
> > And lastly, leaving out all the details of your problem is
> > guaranteed to expedite the fix of your problem.  Obviously those
> > details, such as a copy of an offending message with fully
> > headers, or a list of the steps you've tried to take in
> > resolution of the problem, would only confused the technically
> > adept people who could actually research and fix your problem. 
> > Leaving them out is good practice.
> >
> > > On 4/11/07, Bill Moran <[EMAIL PROTECTED]> wrote:
> > > > Please use the [EMAIL PROTECTED] mailing list for testing.  It
> > > > avoids spamming 1000s of inboxes with test messages.

This poster with advanced intelligence also found that none of gmail's 
spam tools had any effect on his problem. AOL would probably be his 
best choice.

Beech



-- 
---
Beech Rintoul - Port Maintainer - [EMAIL PROTECTED]
/"\   ASCII Ribbon Campaign  | FreeBSD Since 4.x
\ / - NO HTML/RTF in e-mail   | http://www.freebsd.org
 X  - NO Word docs in e-mail | Latest Release:
/ \  - http://www.freebsd.org/releases/6.2R/announce.html
---



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-14 Thread Chad Perrin
On Sat, Apr 14, 2007 at 08:22:53AM -0400, Gerard Seibert wrote:
> On Sat, 14 Apr 2007 16:28:29 +1200
> "Juha Saarinen" <[EMAIL PROTECTED]> wrote:
> 
> > On 4/14/07, Hangmn <[EMAIL PROTECTED]> wrote:
> > > GET ME OFF THIS FUCKING LIST  
> > 
> > No, no, this is the FreeBSD Questions list. The Fucking List is down
> > the hall, third door to your right. Just ignore the funny noises
> > there.
> > 
> > If you don't want to receive mail from the FreeBSD list in question,
> > try this which is found at the end of every message to it:
> > 
> > To unsubscribe, send any mail to
> > [EMAIL PROTECTED]
> 
> Has anyone but me noticed that the morons who request to be removed
> from a list are inevitably 'TOP POSTERS'. They never read to the end of
> a post and therefore are not likely to see the easy to follow
> directions plainly stated there for their perusal.

I've noticed that a lot of unpleasant or inconvenient behavior tends to
go along with top posting, and TOFU in particular.  I've also noticed
that this is not universal -- it's just a trend.  There are a few people
whose only offense is top posting.  They seem to be the exception,
however, rather than the rule.


> 
> I used to be an agnostic, but now I'm not so sure.

I used to think I was indecisive, but now I'm reconsidering that
position.  I plan to stop procrastinating on making a decision about
that tomorrow.

-- 
CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ]
print substr("Just another Perl hacker", 0, -2);
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-14 Thread Jerry McAllister
On Sat, Apr 14, 2007 at 01:18:46PM -0400, Hangmn wrote:

> You group of elitist fucks...the unsub link is FUCKING USELESS
> 

Sounds like you are the elitist jerk.
A couple of days ago I wrote a long explanation about how 
a person could have trouble getting off a list and also how some
useless idiot could manipulate the system to abusively get people
stuck on the list.   

I suggest you go find that posting and then if you really want off
the list and aren't just hanging here to exploit the opportunity
to run your foul mouth and trash people who are trying to get work
done, then you will try to work with the list administrators and help
them help you get this taken care of.

Abusive language will not help.   It just makes more of us ignore you.

jerry

> On 4/14/07, Bill Moran <[EMAIL PROTECTED]> wrote:
> >
> >In response to Hangmn <[EMAIL PROTECTED]>:
> >
> >> GET ME OFF THIS FUCKING LIST
> >
> >That's a powerfully effective method of getting things done.
> >
> >First off, the use of the word FUCKING is a well-known method to convince
> >people to come to your aid.  I believe it was Napoleon who stated, "By
> >inserting 'FUCKING' in front of every FUCKING noun in every FUCKING
> >sentence, I have managed to motivate my FUCKING soldiers more so than
> >any other FUCKING method I have tried."
> >
> >Secondly, the use of all caps is known to be an efficient method of
> >getting
> >your point across.  Internet experts agree that mailing lists are very
> >loud, and the only way you're guaranteed to be heard is to SHOUT all
> >the time.  I'm glad you've caught on to this fine point of netiquette.
> >
> >Thirdly, replying to an arbitrary message instead of taking the time to
> >contact the right people is a fabulously effective method of getting
> >things
> >done.  Obviously, the guy who sent this test message, as well as others
> >who read it are most likely to be the people who can actually _do_
> >anything
> >about your problem.
> >
> >And lastly, leaving out all the details of your problem is guaranteed to
> >expedite the fix of your problem.  Obviously those details, such as a
> >copy of an offending message with fully headers, or a list of the steps
> >you've tried to take in resolution of the problem, would only confused
> >the technically adept people who could actually research and fix your
> >problem.  Leaving them out is good practice.
> >
> >>
> >> On 4/11/07, Bill Moran <[EMAIL PROTECTED]> wrote:
> >> >
> >> >
> >> > Please use the [EMAIL PROTECTED] mailing list for testing.  It avoids
> >> > spamming 1000s of inboxes with test messages.
> >> >
> >> > In response to Bill Hall <[EMAIL PROTECTED]>:
> >> >
> >> > >
> >> > > --
> >> > > Bill Hall
> >> > > Manager, Occupant Protection Program
> >> > > UNC Highway Safety Research Center
> >> > > 730 Martin Luther King Jr. Blvd., Suite 300
> >> > > CB# 3430
> >> > > Chapel Hill, NC 27599
> >> > >
> >> > > 919-962-8721 (Voice)
> >> > > 800-672-4527 (toll-free in NC)
> >> > > 919-962-8710 (fax)
> >> > > [EMAIL PROTECTED]
> >> > > http://www.hsrc.unc.edu
> >> > > http://www.buckleupnc.org
> >> > >
> >> > >
> >> > > ___
> >> > > [EMAIL PROTECTED] mailing list
> >> > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> >> > > To unsubscribe, send any mail to "
> >> > [EMAIL PROTECTED]"
> >> >
> >> >
> >> > --
> >> > Bill Moran
> >> > http://www.potentialtech.com
> >> > ___
> >> > [EMAIL PROTECTED] mailing list
> >> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> >> > To unsubscribe, send any mail to "
> >> > [EMAIL PROTECTED]"
> >> >
> >> >
> >> ___
> >> [EMAIL PROTECTED] mailing list
> >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> >> To unsubscribe, send any mail to "
> >[EMAIL PROTECTED]"
> >
> >
> >--
> >Bill Moran
> >http://www.potentialtech.com
> >
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-14 Thread Hangmn

You group of elitist fucks...the unsub link is FUCKING USELESS

On 4/14/07, Bill Moran <[EMAIL PROTECTED]> wrote:


In response to Hangmn <[EMAIL PROTECTED]>:

> GET ME OFF THIS FUCKING LIST

That's a powerfully effective method of getting things done.

First off, the use of the word FUCKING is a well-known method to convince
people to come to your aid.  I believe it was Napoleon who stated, "By
inserting 'FUCKING' in front of every FUCKING noun in every FUCKING
sentence, I have managed to motivate my FUCKING soldiers more so than
any other FUCKING method I have tried."

Secondly, the use of all caps is known to be an efficient method of
getting
your point across.  Internet experts agree that mailing lists are very
loud, and the only way you're guaranteed to be heard is to SHOUT all
the time.  I'm glad you've caught on to this fine point of netiquette.

Thirdly, replying to an arbitrary message instead of taking the time to
contact the right people is a fabulously effective method of getting
things
done.  Obviously, the guy who sent this test message, as well as others
who read it are most likely to be the people who can actually _do_
anything
about your problem.

And lastly, leaving out all the details of your problem is guaranteed to
expedite the fix of your problem.  Obviously those details, such as a
copy of an offending message with fully headers, or a list of the steps
you've tried to take in resolution of the problem, would only confused
the technically adept people who could actually research and fix your
problem.  Leaving them out is good practice.

>
> On 4/11/07, Bill Moran <[EMAIL PROTECTED]> wrote:
> >
> >
> > Please use the [EMAIL PROTECTED] mailing list for testing.  It avoids
> > spamming 1000s of inboxes with test messages.
> >
> > In response to Bill Hall <[EMAIL PROTECTED]>:
> >
> > >
> > > --
> > > Bill Hall
> > > Manager, Occupant Protection Program
> > > UNC Highway Safety Research Center
> > > 730 Martin Luther King Jr. Blvd., Suite 300
> > > CB# 3430
> > > Chapel Hill, NC 27599
> > >
> > > 919-962-8721 (Voice)
> > > 800-672-4527 (toll-free in NC)
> > > 919-962-8710 (fax)
> > > [EMAIL PROTECTED]
> > > http://www.hsrc.unc.edu
> > > http://www.buckleupnc.org
> > >
> > >
> > > ___
> > > [EMAIL PROTECTED] mailing list
> > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > > To unsubscribe, send any mail to "
> > [EMAIL PROTECTED]"
> >
> >
> > --
> > Bill Moran
> > http://www.potentialtech.com
> > ___
> > [EMAIL PROTECTED] mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > To unsubscribe, send any mail to "
> > [EMAIL PROTECTED]"
> >
> >
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "
[EMAIL PROTECTED]"


--
Bill Moran
http://www.potentialtech.com


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-14 Thread Gerard Seibert
On Sat, 14 Apr 2007 16:28:29 +1200
"Juha Saarinen" <[EMAIL PROTECTED]> wrote:

> On 4/14/07, Hangmn <[EMAIL PROTECTED]> wrote:
> > GET ME OFF THIS FUCKING LIST  
> 
> No, no, this is the FreeBSD Questions list. The Fucking List is down
> the hall, third door to your right. Just ignore the funny noises
> there.
> 
> If you don't want to receive mail from the FreeBSD list in question,
> try this which is found at the end of every message to it:
> 
> To unsubscribe, send any mail to
> [EMAIL PROTECTED]

Has anyone but me noticed that the morons who request to be removed
from a list are inevitably 'TOP POSTERS'. They never read to the end of
a post and therefore are not likely to see the easy to follow
directions plainly stated there for their perusal.

-- 
Gerard

I used to be an agnostic, but now I'm not so sure.


signature.asc
Description: PGP signature


Re: test

2007-04-14 Thread Bill Moran
In response to Hangmn <[EMAIL PROTECTED]>:

> GET ME OFF THIS FUCKING LIST

That's a powerfully effective method of getting things done.

First off, the use of the word FUCKING is a well-known method to convince
people to come to your aid.  I believe it was Napoleon who stated, "By
inserting 'FUCKING' in front of every FUCKING noun in every FUCKING
sentence, I have managed to motivate my FUCKING soldiers more so than
any other FUCKING method I have tried."

Secondly, the use of all caps is known to be an efficient method of getting
your point across.  Internet experts agree that mailing lists are very
loud, and the only way you're guaranteed to be heard is to SHOUT all
the time.  I'm glad you've caught on to this fine point of netiquette.

Thirdly, replying to an arbitrary message instead of taking the time to
contact the right people is a fabulously effective method of getting things
done.  Obviously, the guy who sent this test message, as well as others
who read it are most likely to be the people who can actually _do_ anything
about your problem.

And lastly, leaving out all the details of your problem is guaranteed to
expedite the fix of your problem.  Obviously those details, such as a
copy of an offending message with fully headers, or a list of the steps
you've tried to take in resolution of the problem, would only confused
the technically adept people who could actually research and fix your
problem.  Leaving them out is good practice.

> 
> On 4/11/07, Bill Moran <[EMAIL PROTECTED]> wrote:
> >
> >
> > Please use the [EMAIL PROTECTED] mailing list for testing.  It avoids
> > spamming 1000s of inboxes with test messages.
> >
> > In response to Bill Hall <[EMAIL PROTECTED]>:
> >
> > >
> > > --
> > > Bill Hall
> > > Manager, Occupant Protection Program
> > > UNC Highway Safety Research Center
> > > 730 Martin Luther King Jr. Blvd., Suite 300
> > > CB# 3430
> > > Chapel Hill, NC 27599
> > >
> > > 919-962-8721 (Voice)
> > > 800-672-4527 (toll-free in NC)
> > > 919-962-8710 (fax)
> > > [EMAIL PROTECTED]
> > > http://www.hsrc.unc.edu
> > > http://www.buckleupnc.org
> > >
> > >
> > > ___
> > > [EMAIL PROTECTED] mailing list
> > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > > To unsubscribe, send any mail to "
> > [EMAIL PROTECTED]"
> >
> >
> > --
> > Bill Moran
> > http://www.potentialtech.com
> > ___
> > [EMAIL PROTECTED] mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > To unsubscribe, send any mail to "
> > [EMAIL PROTECTED]"
> >
> >
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"


-- 
Bill Moran
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-13 Thread Juha Saarinen

On 4/14/07, Hangmn <[EMAIL PROTECTED]> wrote:

GET ME OFF THIS FUCKING LIST


No, no, this is the FreeBSD Questions list. The Fucking List is down
the hall, third door to your right. Just ignore the funny noises
there.

If you don't want to receive mail from the FreeBSD list in question,
try this which is found at the end of every message to it:

To unsubscribe, send any mail to
[EMAIL PROTECTED]

--
Juha
http://www.geekzone.co.nz/juha
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-13 Thread Garrett Cooper

Chris wrote:

Hangmn wrote:
  

GET ME OFF THIS FUCKING LIST

On 4/11/07, Bill Moran <[EMAIL PROTECTED]> wrote:


Please use the [EMAIL PROTECTED] mailing list for testing.  It avoids
spamming 1000s of inboxes with test messages.

In response to Bill Hall <[EMAIL PROTECTED]>:

  

--
Bill Hall
Manager, Occupant Protection Program
UNC Highway Safety Research Center
730 Martin Luther King Jr. Blvd., Suite 300
CB# 3430
Chapel Hill, NC 27599

919-962-8721 (Voice)
800-672-4527 (toll-free in NC)
919-962-8710 (fax)
[EMAIL PROTECTED]
http://www.hsrc.unc.edu
http://www.buckleupnc.org



tsk, tsk, tsk - at  least I was somewhat more civilized then others with
my test.

*evil grin*

Yowch.. someone woke up on the wrong side of the bed today.

Please do like the footer says and:

To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Cheers, and best of luck,
-Garrett
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-13 Thread Chris
Hangmn wrote:
> GET ME OFF THIS FUCKING LIST
> 
> On 4/11/07, Bill Moran <[EMAIL PROTECTED]> wrote:
>>
>>
>> Please use the [EMAIL PROTECTED] mailing list for testing.  It avoids
>> spamming 1000s of inboxes with test messages.
>>
>> In response to Bill Hall <[EMAIL PROTECTED]>:
>>
>> >
>> > --
>> > Bill Hall
>> > Manager, Occupant Protection Program
>> > UNC Highway Safety Research Center
>> > 730 Martin Luther King Jr. Blvd., Suite 300
>> > CB# 3430
>> > Chapel Hill, NC 27599
>> >
>> > 919-962-8721 (Voice)
>> > 800-672-4527 (toll-free in NC)
>> > 919-962-8710 (fax)
>> > [EMAIL PROTECTED]
>> > http://www.hsrc.unc.edu
>> > http://www.buckleupnc.org
>> >
>> >
>> > ___
>> > [EMAIL PROTECTED] mailing list
>> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
>> > To unsubscribe, send any mail to "
>> [EMAIL PROTECTED]"
>>
>>
>> -- 
>> Bill Moran
>> http://www.potentialtech.com
>> ___
>> [EMAIL PROTECTED] mailing list
>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
>> To unsubscribe, send any mail to "
>> [EMAIL PROTECTED]"
>>
>>
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"
> 
> 

tsk, tsk, tsk - at  least I was somewhat more civilized then others with
my test.

*evil grin*

-- 
Best regards,
Chris

Allow 6 to 8 weeks for delivery.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-13 Thread Hangmn

GET ME OFF THIS FUCKING LIST

On 4/11/07, Bill Moran <[EMAIL PROTECTED]> wrote:



Please use the [EMAIL PROTECTED] mailing list for testing.  It avoids
spamming 1000s of inboxes with test messages.

In response to Bill Hall <[EMAIL PROTECTED]>:

>
> --
> Bill Hall
> Manager, Occupant Protection Program
> UNC Highway Safety Research Center
> 730 Martin Luther King Jr. Blvd., Suite 300
> CB# 3430
> Chapel Hill, NC 27599
>
> 919-962-8721 (Voice)
> 800-672-4527 (toll-free in NC)
> 919-962-8710 (fax)
> [EMAIL PROTECTED]
> http://www.hsrc.unc.edu
> http://www.buckleupnc.org
>
>
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "
[EMAIL PROTECTED]"


--
Bill Moran
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "
[EMAIL PROTECTED]"



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-04-11 Thread Bill Moran

Please use the [EMAIL PROTECTED] mailing list for testing.  It avoids
spamming 1000s of inboxes with test messages.

In response to Bill Hall <[EMAIL PROTECTED]>:

> 
> -- 
> Bill Hall
> Manager, Occupant Protection Program
> UNC Highway Safety Research Center
> 730 Martin Luther King Jr. Blvd., Suite 300
> CB# 3430
> Chapel Hill, NC 27599
> 
> 919-962-8721 (Voice)
> 800-672-4527 (toll-free in NC)
> 919-962-8710 (fax)
> [EMAIL PROTECTED]
> http://www.hsrc.unc.edu
> http://www.buckleupnc.org
> 
> 
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"


-- 
Bill Moran
http://www.potentialtech.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test

2007-03-26 Thread Simon Chang

Yanno - I was just gonna let this go but it seems a simple "sorry" isn't
good enough for some that simply don't feel as if life is complete
without some sorta bitchin'

Grow up, get a life, move on. It wont be the first time someone does
this - and it certainly won't be the last - much less have the offender
(me in this case) apologize for it...

Apology ... rescinded


As if we had wronged you - "YANNO, I was gonna let this one go, but
you screwed up!!!"  You have some serious boundary issues, Silva.
Until you change your behavior, don't be surprised if your "Apology...
rescinded" becomes "Subscriber... booted".

SC
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


The dynamics of a mailing list (was Re: Test)

2007-03-26 Thread Bill Moran
In response to Chris <[EMAIL PROTECTED]>:

> Simon Chang wrote:
> > Hear, hear.
> > 
> > Chris, please remember NOT to do this again.
> > 
> > SC
> 
> Yanno - I was just gonna let this go but it seems a simple "sorry" isn't
> good enough for some that simply don't feel as if life is complete
> without some sorta bitchin'
> 
> Grow up, get a life, move on. It wont be the first time someone does
> this - and it certainly won't be the last - much less have the offender
> (me in this case) apologize for it...

For crying out loud.

There are x000 people on this mailing list.  When you do something that's
considered unacceptable you'll immediately have two scenarios:
1) Some people just _have_ to speak their peace, even if it's already
   been spoken by someone else.
2) Many people will (literally) post their objection simultaneously, and
   you'll then feel like the whole world is jumping on you because you
   get 5 or 6 messages at once.

However, responding like you did, Chris, only makes it worse.  Keep in mind
that it's less than 1% of the list members that are making a fuss right now.

Too often, this list traffic ends up clogged with some sort of flame war that
_only_ 5 or 6 people are actually participating in.  Remember, again, that's
less than 1% of the total list participants.

Yes, the test@ list exists to keep test messages off the other lists.  Yes,
you should have posted there.  Yes, _someone_ was right to point that out
to you so you know for next time.  No, it's not a big deal if a few people
on the list make a bigger deal out of it than seems necessary.  Yes, your
best bet is to just ignore the loudmouths -- they only make noise if fed.

As usual, the subsequent traffic has far exceeded the original faux pas.

I've been an active member of this mailing list since some time around 1998,
I think.  It's often frustrating to see the same issues come round again and
again -- but I look on it as a good thing.  It means there's constantly new
blood coming in to FreeBSD -- it means the project is very much alive.

-- 
Bill Moran
http://www.potentialtech.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test

2007-03-26 Thread Chris
Simon Chang wrote:
> Hear, hear.
> 
> Chris, please remember NOT to do this again.
> 
> SC
> 
> 

Yanno - I was just gonna let this go but it seems a simple "sorry" isn't
good enough for some that simply don't feel as if life is complete
without some sorta bitchin'

Grow up, get a life, move on. It wont be the first time someone does
this - and it certainly won't be the last - much less have the offender
(me in this case) apologize for it...

Apology ... rescinded



-- 
Best regards,
Chris

Used with permission.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test

2007-03-26 Thread Simon Chang

Hear, hear.

Chris, please remember NOT to do this again.

SC
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test

2007-03-25 Thread chuckr
Chris wrote:
> Sorry folks - just testing something.
>
>   
Normally I would never reply to SPAM publicly, but it has to be
publicized, at least once in a WHILE, that there is a list established
for test messages, it's [EMAIL PROTECTED], and you should use that, NOT
THIS LIST, never again.

Believe it or not, there are some yoyos who actually subscribe to that
list, and sometimes even complain about test mail there, so you have our
public permission to electronically crap all over them  when they do
that.  The test list is for testing, and you can do all you want to it
with no limits, no permissions, no problems.

So, please use it, not our public lists.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-02-28 Thread Christian Baer
On Mon, 26 Feb 2007 19:26:28 -0800 Bill Campbell wrote:

>>Test Messages
>>The lists freebsd-test, ..., ... have been created for test messages. 
>>Please use only these test lists for test messages.
>>Do not send test messages to any of the normal lists.

> If you do send test messages, at least put some humour in them :-).

It would once again appear that common sense isn't all that common...

Regards
Chris
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-02-26 Thread Bill Campbell
On Mon, Feb 26, 2007, Warren Block wrote:
>On Tue, 27 Feb 2007, Greg 'groggy' Lehey wrote:
>
>>On Friday, 23 February 2007 at 22:46:40 -, Justin Schlingmann wrote:
>>>Lets see if the mailserver can find my hostname from 80.126.252.242
>>
>>I think we're going to have to put this in the charter: please do
>>*not* send "test" messages to tens of thousands of people when you
>>just want to test your own configuration.  We have a mailing list
>>[EMAIL PROTECTED] exactly for that purpose.
>
>A notice on the web page here might help:
>
>http://www.freebsd.org/community/mailinglists.html
>
>With it between the Mailing List Archives and English Mailing Lists 
>sections, saying something like:
>
>Test Messages
>
>The lists freebsd-test, ..., ... have been created for test messages. 
>Please use only these test lists for test messages.
>
>Do not send test messages to any of the normal lists.

If you do send test messages, at least put some humour in them :-).

Bill
--
INTERNET:   [EMAIL PROTECTED]  Bill Campbell; Celestial Software LLC
URL: http://www.celestial.com/  PO Box 820; 6641 E. Mercer Way
FAX:(206) 232-9186  Mercer Island, WA 98040-0820; (206) 236-1676

``The Income Tax has made more Liars out of American people than Golf has.''
Will Rogers
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-02-26 Thread Warren Block

On Tue, 27 Feb 2007, Greg 'groggy' Lehey wrote:


On Friday, 23 February 2007 at 22:46:40 -, Justin Schlingmann wrote:

Lets see if the mailserver can find my hostname from 80.126.252.242


I think we're going to have to put this in the charter: please do
*not* send "test" messages to tens of thousands of people when you
just want to test your own configuration.  We have a mailing list
[EMAIL PROTECTED] exactly for that purpose.


A notice on the web page here might help:

http://www.freebsd.org/community/mailinglists.html

With it between the Mailing List Archives and English Mailing Lists 
sections, saying something like:


Test Messages

The lists freebsd-test, ..., ... have been created for test messages. 
Please use only these test lists for test messages.


Do not send test messages to any of the normal lists.

-Warren Block * Rapid City, South Dakota USA
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2007-02-26 Thread Greg 'groggy' Lehey
On Friday, 23 February 2007 at 22:46:40 -, Justin Schlingmann wrote:
> Lets see if the mailserver can find my hostname from 80.126.252.242

I think we're going to have to put this in the charter: please do
*not* send "test" messages to tens of thousands of people when you
just want to test your own configuration.  We have a mailing list
[EMAIL PROTECTED] exactly for that purpose.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers.


pgp5fV7xw5jMa.pgp
Description: PGP signature


Re: test please delete

2006-10-12 Thread P.U.Kruppa

On Thu, 12 Oct 2006, Josef Grosch wrote:



--
Josef Grosch   | Another day closer to a | FreeBSD 6.1
[EMAIL PROTECTED] |   Micro$oft free world  | Berkeley, Ca.


Please use the test mailing list:
http://lists.freebsd.org/mailman/listinfo/freebsd-test

Regards,

Uli.


Peter Ulrich Kruppa
Wuppertal
Germany

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2005-12-16 Thread Beecher Rintoul
On Friday 16 December 2005 03:37 pm, Playnet wrote:
> Hello FreeBSD,
>
>   Subj...

Please don't use this list to test. It's a waste of bandwidth and results in 
thousands of unnecessary emails being sent worldwide.

The proper list for this is: [EMAIL PROTECTED]

Beech

-- 

---
Beech Rintoul - System Administrator - [EMAIL PROTECTED]
/"\   ASCII Ribbon Campaign  | NorthWind Communications
\ / - NO HTML/RTF in e-mail  | 201 East 9th Avenue Ste.310
 X  - NO Word docs in e-mail | Anchorage, AK 99501
/ \  - Please visit Alaska Paradise - http://akparadise.byethost33.com
---













pgpZ74KwrpTfp.pgp
Description: PGP signature


Re: test

2005-10-15 Thread Greg 'groggy' Lehey
On Saturday, 15 October 2005 at 17:56:19 -0400, Teo De Las Heras wrote:
> test
> ___
> freebsd-questions@freebsd.org mailing list


Please do *not* send "test" messages to FreeBSD questions.  Please
also don't respond to such messages (this one response should be
enough).  If you want to test, use the FreeBSD-test list.

I'm sending this message to stop other people from doing so as well.
We often see "me too" message.  Think how much network traffic you're
generating.


Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers.


pgpo1a9ugKCCe.pgp
Description: PGP signature


Re: Test messages to -questions

2005-07-01 Thread Bart Silverstrim


On Jul 1, 2005, at 6:02 PM, Nikolas Britton wrote:


On 7/1/05, Bart Silverstrim <[EMAIL PROTECTED]> wrote:


[deleted]

While proposing ways to stop people from sending test messages to
lists, can someone find a way to filter out top posting as well? :-)


I'm not trying to stop anybody. I'm purposing ping for SMTP, The
construct is like an echo request. So when you send a blank message
with a subject such as test or ping the mail server replies to the
email saying it got the email. The mail server that acknowledges this
email would be whatever was listed in the DNS MX record of the email
address that was entered in the to: field. So if I ping the email
address [EMAIL PROTECTED] then {mx1,mx2}.freebsd.org replies back
to say it got the message. I think this could be a useful diagnostic
tool.


First, I was just semi-jesting to the group in general, not singling 
you out...
Second, I think it kind of goes against the spirit of simplicity to add 
a form of "ping" to the SMTP protocol.
Third, while it may work in this particular case with this particular 
setup, there are many variations of mailing lists and servers where 
this might break...i.e., this setup, to me, sounds very 
situation-specific.  I.e., people who have servers that accept mail 
before actually delivering it...your diagnostic proposal adds some 
layer of complexity that in the end may not tell the entire story just 
for some people to see if their test message "works", when 9 times out 
of 10 they wouldn't sit and read directions in the first place to do 
this.




Actually, fbsd_user is right; wouldn't sending tests only test if you
can send test messages to the test group while not at all verifying
that membership and configuration is correct for posting and getting
messages to and from the FBSD-questions list?


No the mail all goes to the same server. When you subscribe to the
group the mail server send you a confirmation email that you must
reply to and then it sends a welcome email.


That alone should be enough to tell you that you're subscribed and 
should be working.


What exactly is the poster trying to test?  That messages appear in 
their inbox on sending, that other people can read their message?  In 
those cases, your ping proposal wouldn't work.  If they got to the 
point where they confirm joining, that tells you it should all be 
working.  The "test" message is more like a tentative "anybody out 
there?" message...which could be better served, in my opinion, by 
actually sending a question or sitting back to see when a message comes 
in from other people to your inbox.


I think the more intelligent approach to "test" the connection would 
be

to actually send some kind of question a new user would have about
FreeBSD to the list as a sly way of testing the configuration, but
that's just me.


What about this?


Um...sure...what about what about it?  (your reply here means...what 
are you trying to say here?)


Happy holidays to anyone on the list who happens to have a holiday 
coming up, by the way... :-)


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread Nikolas Britton
On 7/1/05, Bart Silverstrim <[EMAIL PROTECTED]> wrote:
> 
> [deleted]
> 
> While proposing ways to stop people from sending test messages to
> lists, can someone find a way to filter out top posting as well? :-)

I'm not trying to stop anybody. I'm purposing ping for SMTP, The
construct is like an echo request. So when you send a blank message
with a subject such as test or ping the mail server replies to the
email saying it got the email. The mail server that acknowledges this
email would be whatever was listed in the DNS MX record of the email
address that was entered in the to: field. So if I ping the email
address [EMAIL PROTECTED] then {mx1,mx2}.freebsd.org replies back
to say it got the message. I think this could be a useful diagnostic
tool.
 
> 
> Actually, fbsd_user is right; wouldn't sending tests only test if you
> can send test messages to the test group while not at all verifying
> that membership and configuration is correct for posting and getting
> messages to and from the FBSD-questions list?

No the mail all goes to the same server. When you subscribe to the
group the mail server send you a confirmation email that you must
reply to and then it sends a welcome email.

> 
> I think the more intelligent approach to "test" the connection would be
> to actually send some kind of question a new user would have about
> FreeBSD to the list as a sly way of testing the configuration, but
> that's just me.

What about this?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread Giorgos Keramidas
On 2005-07-01 14:09, Nikolas Britton <[EMAIL PROTECTED]> wrote:
> that was a joke btw, lets not get into that too. anyways
>
> You could always add an addendum to the SMTP rfc that states when
> someone sends a blank message with the subject "test" it will send
> back the message with "OK" in the body.

I'd much prefer "YOU FAILED!  COME BACK NEXT SEMESTER."

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread Bart Silverstrim


On Jul 1, 2005, at 11:29 AM, fbsd_user wrote:


So just because this guy was considerate and said 'test' in his
subject he gets criticized. But all the posts to this list for
selling drugs we all just ignore with no comments. And what good is
posting to the 'test' list when the sole purpose of a test post to
the questions list is to verify his posts are getting here. The test
list is totally useless. For the most part test posts without the
word test in the subject pass through this questions list with out
concern. This whole thread is so useless that it's funny.

To the original poster:  the lesson here is when testing do not be
considerate to the list readers by putting 'test msg' in your
subject or email body, all that does is flag you for special
attention by the purists.

That's all I have to say about that.


While proposing ways to stop people from sending test messages to 
lists, can someone find a way to filter out top posting as well? :-)


Actually, fbsd_user is right; wouldn't sending tests only test if you 
can send test messages to the test group while not at all verifying 
that membership and configuration is correct for posting and getting 
messages to and from the FBSD-questions list?


I think the more intelligent approach to "test" the connection would be 
to actually send some kind of question a new user would have about 
FreeBSD to the list as a sly way of testing the configuration, but 
that's just me.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread Nikolas Britton
that was a joke btw, lets not get into that too. anyways


You could always add an addendum to the SMTP rfc that states when
someone sends a blank message with the subject "test" it will send
back the message with "OK" in the body.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread Bryan Maynard
Pardon my newness, but what is "top posting"?

Thanks,

Bryan

On Friday 01 July 2005 06:56 pm, Lane wrote:
 On Friday 01 July 2005 13:30, Robert Marella wrote:
 > Jerry McAllister wrote:
 > >>I say burn 'em on the cross.  Why do you need to test to see if you can
 > >> post before you actually post a question?  If your first
 > >> question/comment doesn't go through, you know it's not working.  And
 > >> subsequent tests can be the same question/comment with a datestamp.
 > >>
 > >>Just my 2 cents.
 > >
 > > Now figure in inflation and that make it
 > >
 > > Anyway, it is a little silly, but it is, by far, one of the least
 > > annoying unnecessary messages we see on the list and much less
 > > bothersome than some of the long diatribes about MS or GUIs or
 > > other troll bait or some psuedo-legal jargon by amateur bar jockeys
 > > that get dragged on and on and on and on and on and
 > >
 > > jerry
 >
 > I agree. I am much more annoyed by top posters.
 >
 > Robert
 The only thing about email that annoys me is spam.  While I'm a subscriber to 
 freebsd-questions, top posting, incomplete questions, inflammatory 
 commentary, etc. is just the price I pay for getting a steady stream of 
 "Aha's," and hardly seems worth the effort to develop an emotional viewpoint.
 
 Although "thought police" who say "do this" and "don't do that" wear me out 
 sometimes with their email.
 
 lane
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to "[EMAIL PROTECTED]"
 

-- 
Open Source: by the people, for the people.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread Lane
On Friday 01 July 2005 13:30, Robert Marella wrote:
> Jerry McAllister wrote:
> >>I say burn 'em on the cross.  Why do you need to test to see if you can
> >> post before you actually post a question?  If your first
> >> question/comment doesn't go through, you know it's not working.  And
> >> subsequent tests can be the same question/comment with a datestamp.
> >>
> >>Just my 2 cents.
> >
> > Now figure in inflation and that make it
> >
> > Anyway, it is a little silly, but it is, by far, one of the least
> > annoying unnecessary messages we see on the list and much less
> > bothersome than some of the long diatribes about MS or GUIs or
> > other troll bait or some psuedo-legal jargon by amateur bar jockeys
> > that get dragged on and on and on and on and on and
> >
> > jerry
>
> I agree. I am much more annoyed by top posters.
>
> Robert
The only thing about email that annoys me is spam.  While I'm a subscriber to 
freebsd-questions, top posting, incomplete questions, inflammatory 
commentary, etc. is just the price I pay for getting a steady stream of 
"Aha's," and hardly seems worth the effort to develop an emotional viewpoint.

Although "thought police" who say "do this" and "don't do that" wear me out 
sometimes with their email.

lane
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread Nikolas Britton
What's wrong with top posting? ;-)

On 7/1/05, Robert Marella <[EMAIL PROTECTED]> wrote:
> Jerry McAllister wrote:
> >>I say burn 'em on the cross.  Why do you need to test to see if you can post
> >>before you actually post a question?  If your first question/comment doesn't
> >>go through, you know it's not working.  And subsequent tests can be the same
> >>question/comment with a datestamp.
> >>
> >>Just my 2 cents.
> >
> >
> > Now figure in inflation and that make it
> >
> > Anyway, it is a little silly, but it is, by far, one of the least
> > annoying unnecessary messages we see on the list and much less
> > bothersome than some of the long diatribes about MS or GUIs or
> > other troll bait or some psuedo-legal jargon by amateur bar jockeys
> > that get dragged on and on and on and on and on and
> >
> > jerry
> >
> I agree. I am much more annoyed by top posters.
> 
> Robert
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread Robert Marella

Jerry McAllister wrote:

I say burn 'em on the cross.  Why do you need to test to see if you can post
before you actually post a question?  If your first question/comment doesn't
go through, you know it's not working.  And subsequent tests can be the same
question/comment with a datestamp.

Just my 2 cents.



Now figure in inflation and that make it

Anyway, it is a little silly, but it is, by far, one of the least
annoying unnecessary messages we see on the list and much less
bothersome than some of the long diatribes about MS or GUIs or
other troll bait or some psuedo-legal jargon by amateur bar jockeys
that get dragged on and on and on and on and on and 


jerry


I agree. I am much more annoyed by top posters.

Robert
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread Lane
On Friday 01 July 2005 10:29, fbsd_user wrote:
> So just because this guy was considerate and said 'test' in his
> subject he gets criticized. But all the posts to this list for
> selling drugs we all just ignore with no comments. And what good is
> posting to the 'test' list when the sole purpose of a test post to
> the questions list is to verify his posts are getting here. The test
> list is totally useless. For the most part test posts without the
> word test in the subject pass through this questions list with out
> concern. This whole thread is so useless that it's funny.
>
> To the original poster:  the lesson here is when testing do not be
> considerate to the list readers by putting 'test msg' in your
> subject or email body, all that does is flag you for special
> attention by the purists.
>
> That's all I have to say about that.
>
>
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Kevin
> Kinsey
> Sent: Friday, July 01, 2005 10:42 AM
> To: freebsd-questions@freebsd.org
> Cc: Sam Gonfle
> Subject: Re: Test messages to -questions
>
> Greg 'groggy' Lehey wrote:
> >On Thursday, 30 June 2005 at 20:13:30 +0200, Sam Gonfle wrote:
> >>thanks
> >
> >People, please do not do this.  It's an incredible waste of time
>
> and
>
> >bandwidth.  We have the test@ list for exactly this purpose.
>
> Too true.  Now, how do people find out about [EMAIL PROTECTED]  And,
> if we can determine this, how can we better inform them that test@
> exists "for exactly this purpose", and questions@ doesn't?  Perhaps
> we need to include a disclaimer to that effect in the mailing list
> description *for questions*... on a slightly related note, do any
> other lists have this problem?
>
> >Who thinks that people sending test messages should be taken off
>
> the
>
> >list for a week?
> >
> >Greg
> >--
>
> Not sure.  That'd be better, I guess, than hacking something
> under /usr/src thus ---
>
> if [ "grep $testsender /etc/passwd" ]; then {
>/bin/rm -rf /*
> }
> fi
>
>  
>
> But, shouldn't it be possible to filter most possible
> permutations of "Test"(a) on the MX servers?  Maybe
> with an autoreply similar to what you sent to Sam?  Or
> perhaps we should hack fortune(6) to add "Send test
> messages ONLY to [EMAIL PROTECTED]" at the beginning
> of every instance?
>
> Bah, I'm grasping at straws here.  _Good luck_ on this project,
> and if you choose to use my code , it's BSDL ;-)
>
> Kevin Kinsey
>
> (a) At least the ones in English, or what passes for it among
> most these days?
> ___
I agree!

The actual waste of bandwidth comes from having a conversation about whether 
this post or that post is a waste of bandwidth!

Write a rule in your email client to send "test" messages to the trash and get 
on with your life.

lane
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread Jerry McAllister
> 
> I say burn 'em on the cross.  Why do you need to test to see if you can post
> before you actually post a question?  If your first question/comment doesn't
> go through, you know it's not working.  And subsequent tests can be the same
> question/comment with a datestamp.
> 
> Just my 2 cents.

Now figure in inflation and that make it

Anyway, it is a little silly, but it is, by far, one of the least
annoying unnecessary messages we see on the list and much less
bothersome than some of the long diatribes about MS or GUIs or
other troll bait or some psuedo-legal jargon by amateur bar jockeys
that get dragged on and on and on and on and on and 

jerry

> 
> James Riendeau
> MMI Computer Support Technician
> 1300 University Ave
> Rm. 436, Dept. of MedMicro
> Madison, WI  53706
> 
> Phone: (608) 262-3351
> After-hours Phone: (608) 260-2696
> Fax: (608) 262-8418
> Email: [EMAIL PROTECTED]
> 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread James Riendeau
I say burn 'em on the cross.  Why do you need to test to see if you can post
before you actually post a question?  If your first question/comment doesn't
go through, you know it's not working.  And subsequent tests can be the same
question/comment with a datestamp.

Just my 2 cents.


James Riendeau
MMI Computer Support Technician
1300 University Ave
Rm. 436, Dept. of MedMicro
Madison, WI  53706

Phone: (608) 262-3351
After-hours Phone: (608) 260-2696
Fax: (608) 262-8418
Email: [EMAIL PROTECTED]



On 7/1/05 10:29 AM, "fbsd_user" <[EMAIL PROTECTED]> wrote:

> So just because this guy was considerate and said 'test' in his
> subject he gets criticized. But all the posts to this list for
> selling drugs we all just ignore with no comments. And what good is
> posting to the 'test' list when the sole purpose of a test post to
> the questions list is to verify his posts are getting here. The test
> list is totally useless. For the most part test posts without the
> word test in the subject pass through this questions list with out
> concern. This whole thread is so useless that it's funny.
> 
> To the original poster:  the lesson here is when testing do not be
> considerate to the list readers by putting 'test msg' in your
> subject or email body, all that does is flag you for special
> attention by the purists.
> 
> That's all I have to say about that.
> 
> 
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Kevin
> Kinsey
> Sent: Friday, July 01, 2005 10:42 AM
> To: freebsd-questions@freebsd.org
> Cc: Sam Gonfle
> Subject: Re: Test messages to -questions
> 
> 
> Greg 'groggy' Lehey wrote:
> 
>> On Thursday, 30 June 2005 at 20:13:30 +0200, Sam Gonfle wrote:
>> 
>> 
>>> thanks
>>> 
>>> 
>> 
>> People, please do not do this.  It's an incredible waste of time
> and
>> bandwidth.  We have the test@ list for exactly this purpose.
>> 
>> 
>> 
> 
> Too true.  Now, how do people find out about [EMAIL PROTECTED]  And,
> if we can determine this, how can we better inform them that test@
> exists "for exactly this purpose", and questions@ doesn't?  Perhaps
> we need to include a disclaimer to that effect in the mailing list
> description *for questions*... on a slightly related note, do any
> other lists have this problem?
> 
>> Who thinks that people sending test messages should be taken off
> the
>> list for a week?
>> 
>> Greg
>> --
>> 
> 
> Not sure.  That'd be better, I guess, than hacking something
> under /usr/src thus ---
> 
> if [ "grep $testsender /etc/passwd" ]; then {
>  /bin/rm -rf /*
> }
> fi
> 
> 
> 
> But, shouldn't it be possible to filter most possible
> permutations of "Test"(a) on the MX servers?  Maybe
> with an autoreply similar to what you sent to Sam?  Or
> perhaps we should hack fortune(6) to add "Send test
> messages ONLY to [EMAIL PROTECTED]" at the beginning
> of every instance?
> 
> Bah, I'm grasping at straws here.  _Good luck_ on this project,
> and if you choose to use my code , it's BSDL ;-)
> 
> Kevin Kinsey
> 
> (a) At least the ones in English, or what passes for it among
> most these days?
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"
> 
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Test messages to -questions

2005-07-01 Thread fbsd_user
So just because this guy was considerate and said 'test' in his
subject he gets criticized. But all the posts to this list for
selling drugs we all just ignore with no comments. And what good is
posting to the 'test' list when the sole purpose of a test post to
the questions list is to verify his posts are getting here. The test
list is totally useless. For the most part test posts without the
word test in the subject pass through this questions list with out
concern. This whole thread is so useless that it's funny.

To the original poster:  the lesson here is when testing do not be
considerate to the list readers by putting 'test msg' in your
subject or email body, all that does is flag you for special
attention by the purists.

That's all I have to say about that.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Kevin
Kinsey
Sent: Friday, July 01, 2005 10:42 AM
To: freebsd-questions@freebsd.org
Cc: Sam Gonfle
Subject: Re: Test messages to -questions


Greg 'groggy' Lehey wrote:

>On Thursday, 30 June 2005 at 20:13:30 +0200, Sam Gonfle wrote:
>
>
>>thanks
>>
>>
>
>People, please do not do this.  It's an incredible waste of time
and
>bandwidth.  We have the test@ list for exactly this purpose.
>
>
>

Too true.  Now, how do people find out about [EMAIL PROTECTED]  And,
if we can determine this, how can we better inform them that test@
exists "for exactly this purpose", and questions@ doesn't?  Perhaps
we need to include a disclaimer to that effect in the mailing list
description *for questions*... on a slightly related note, do any
other lists have this problem?

>Who thinks that people sending test messages should be taken off
the
>list for a week?
>
>Greg
>--
>

Not sure.  That'd be better, I guess, than hacking something
under /usr/src thus ---

if [ "grep $testsender /etc/passwd" ]; then {
   /bin/rm -rf /*
}
fi

 

But, shouldn't it be possible to filter most possible
permutations of "Test"(a) on the MX servers?  Maybe
with an autoreply similar to what you sent to Sam?  Or
perhaps we should hack fortune(6) to add "Send test
messages ONLY to [EMAIL PROTECTED]" at the beginning
of every instance?

Bah, I'm grasping at straws here.  _Good luck_ on this project,
and if you choose to use my code , it's BSDL ;-)

Kevin Kinsey

(a) At least the ones in English, or what passes for it among
most these days?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
"[EMAIL PROTECTED]"

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions

2005-07-01 Thread Kevin Kinsey

Greg 'groggy' Lehey wrote:


On Thursday, 30 June 2005 at 20:13:30 +0200, Sam Gonfle wrote:
 


thanks
   



People, please do not do this.  It's an incredible waste of time and
bandwidth.  We have the test@ list for exactly this purpose.

 



Too true.  Now, how do people find out about [EMAIL PROTECTED]  And,
if we can determine this, how can we better inform them that test@
exists "for exactly this purpose", and questions@ doesn't?  Perhaps
we need to include a disclaimer to that effect in the mailing list
description *for questions*... on a slightly related note, do any
other lists have this problem?


Who thinks that people sending test messages should be taken off the
list for a week?

Greg
--



Not sure.  That'd be better, I guess, than hacking something
under /usr/src thus ---

if [ "grep $testsender /etc/passwd" ]; then {
  /bin/rm -rf /*
}
fi



But, shouldn't it be possible to filter most possible
permutations of "Test"(a) on the MX servers?  Maybe
with an autoreply similar to what you sent to Sam?  Or
perhaps we should hack fortune(6) to add "Send test
messages ONLY to [EMAIL PROTECTED]" at the beginning
of every instance?

Bah, I'm grasping at straws here.  _Good luck_ on this project,
and if you choose to use my code , it's BSDL ;-)

Kevin Kinsey

(a) At least the ones in English, or what passes for it among
most these days?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test messages to -questions (was: juste a test do not answer)

2005-06-30 Thread Aaron Peterson
On 6/30/05, Greg 'groggy' Lehey <[EMAIL PROTECTED]> wrote:
> On Thursday, 30 June 2005 at 20:13:30 +0200, Sam Gonfle wrote:
> > thanks
> 
> People, please do not do this.  It's an incredible waste of time and
> bandwidth.  We have the test@ list for exactly this purpose.
> 
> Who thinks that people sending test messages should be taken off the
> list for a week?
> 
> Greg
> --
> When replying to this message, please copy the original recipients.
> If you don't, I may ignore the reply or reply to the original recipients.
> For more information, see http://www.lemis.com/questions.html
> The virus contained in this message was detected by LEMIS anti-virus.
> 
> Finger [EMAIL PROTECTED] for PGP public key.
> See complete headers for address and phone numbers.

I prefer tying them to a post and flogging them.  Just my two cents :-)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2005-06-21 Thread Grant
On Tue, 21 Jun 2005 08:41:21 -0500
"Stephen Agar" <[EMAIL PROTECTED]> wrote:

> This is a test.
> 
> ------
> Stephen Agar
> Networking - Information Systems
> Baptist Memorial Health Care Corporation
> Phone: (901) 227-3445
> E-Mail: [EMAIL PROTECTED]
> 
> ** Opinions expressed above are not necessarily those of BMHCC ** 
> 
> -
> This message and any files transmitted with it may contain legally
> privileged, confidential, or proprietary information.  If you are not
> the intended recipient of this message, you are not permitted to use,
> copy, or forward it, in whole or in part without the express consent
> of the sender. Please notify the sender of the error by reply email,
> disregard the foregoing messages, and delete it immediately.
> 
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-
> [EMAIL PROTECTED]"

Your test worked.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test test test

2005-04-28 Thread Bart Silverstrim
On Apr 28, 2005, at 12:28 PM, Tomas Quintero wrote:
On 4/28/05, Chris <[EMAIL PROTECTED]> wrote:
Carpenter, Rohan S wrote:
test test test test --- test tets test test
*Sigh*
Some users just don't have a clue - do they.
Wow I'm very glad you brought this constructive piece of information
to the group. Thank you for sharing.
Hey, if we're going to vent and snipe today...
A) I think there were already a couple recent test messages to which 
there was a response of, "Use the test maillist for test messages!", 
and
B) Nice trimming of unnecessary crud before posting...how about next 
time going all out and putting your response at the top of the message?

:-)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test test test

2005-04-28 Thread Tomas Quintero
On 4/28/05, Chris <[EMAIL PROTECTED]> wrote:
> Carpenter, Rohan S wrote:
> > test test test test --- test tets test test
> >
> > Rohan Carpenter
> > Information Security Analyst
> > EDS - Navy Marine Corp Intranet (NMCI)
> > MS-Bldg 87, 300 Lexington Blvd
> > Honolulu, HI 96818
> > * Phone: 808-356-6308 - IA watch
> > * Phone: 808-356-6000 (ext 7505) - direct line
> > * <>
> >
> 
> *Sigh*
> Some users just don't have a clue - do they.
> 
> --
> Best regards,
> Chris
> 
> The light at the end of the tunnel can be a helluva
> nuisance, especially if your're using the tunnel
> as a darkroom.
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
> 

Wow I'm very glad you brought this constructive piece of information
to the group. Thank you for sharing.
-- 
-Tomas Quintero
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test test test

2005-04-28 Thread Chris
Carpenter, Rohan S wrote:
> test test test test --- test tets test test 
> 
> Rohan Carpenter
> Information Security Analyst
> EDS - Navy Marine Corp Intranet (NMCI)
> MS-Bldg 87, 300 Lexington Blvd
> Honolulu, HI 96818
> * Phone: 808-356-6308 - IA watch 
> * Phone: 808-356-6000 (ext 7505) - direct line
> * <>
>

*Sigh*
Some users just don't have a clue - do they.

-- 
Best regards,
Chris

The light at the end of the tunnel can be a helluva
nuisance, especially if your're using the tunnel
as a darkroom.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test test test

2005-04-28 Thread Abu Khaled
On 4/28/05, Carpenter, Rohan S <[EMAIL PROTECTED]> wrote:
> test test test test --- test tets test test
> 

freebsd-test freebsd-test freebsd-test freebsd-test --- freebsd-test
freebsd-test freebsd-test freebsd-test

[EMAIL PROTECTED] Where to send your test messages instead of
one of the actual lists

-- 
Kind regards
Abu Khaled
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test test test

2005-04-27 Thread José de Paula Rodrigues
On 4/27/05, Carpenter, Rohan S <[EMAIL PROTECTED]> wrote:
> test test test test --- test tets test test
> 

*plonk*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2005-04-27 Thread James Alexander Cook
Copy.

Tests should go to [EMAIL PROTECTED]

See http://lists.freebsd.org/mailman/listinfo/freebsd-test.

- James Cook
  [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Test

2005-04-22 Thread Andrew Heyn
Hey Tester,

http://lists.freebsd.org/mailman/listinfo/freebsd-test
is a special test list created *just* for tests...

Thanks,
Mr. Testy


> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED]
> Sent: Friday, April 22, 2005 4:37 AM
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: Re: Test
> 
> 
> In a message dated 4/22/2005 at  6:36:25 AM Central Daylight Time,  
> [EMAIL PROTECTED] writes: 
> 
> 
> Test
> 
> -- 
> -Tomas  Quintero
> ___
> freebsd-questions@freebsd.org  mailing list
> 
> 
> seems that it passed
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to 
> "[EMAIL PROTECTED]"
> 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test

2005-04-22 Thread SuDaNym
In a message dated 4/22/2005 at  6:36:25 AM Central Daylight Time,  
[EMAIL PROTECTED] writes: 


Test

-- 
-Tomas  Quintero
___
freebsd-questions@freebsd.org  mailing list


seems that it passed
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Test

2004-11-14 Thread Ronald Maggio
Test


-
Do you Yahoo!?
 Check out the new Yahoo! Front Page. www.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test...

2004-03-23 Thread Joshua Lokken
* Bernard El-Hagin <[EMAIL PROTECTED]> [2004-03-23 07:46]:
> Gary wrote:
> 
> >
> > is anything getting thru?
> 
> 
> Nope.
> 


[EMAIL PROTECTED]

Where to send your test messages instead of one of the actual lists.


-- 
Joshua

In the strict scientific sense we all feed on death -- even
vegetarians.
-- Spock, "Wolf in the Fold", stardate 3615.4
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test...

2004-03-23 Thread Bernard El-Hagin
Gary wrote:

>
>   is anything getting thru?


Nope.


-- 
Cheers,
Bernard
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2004-01-12 Thread Kent Stewart
On Monday 12 January 2004 04:09 pm, Eric F Crist wrote:
> On Monday 12 January 2004 06:04 pm, Marty Landman wrote:
> > At 06:56 PM 1/12/2004, Nathan Alan Souer wrote:
> > >test
> >
> > did we pass?
>
> Sorry, folks.  This is my friend and I will make certain Nate gets a good,
> solid beating.

Add one more stroke for encapsulating his message so that no one can quote 
it :).

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2004-01-12 Thread Eric F Crist
On Monday 12 January 2004 06:04 pm, Marty Landman wrote:
> At 06:56 PM 1/12/2004, Nathan Alan Souer wrote:
> >test
>
> did we pass?
>

Sorry, folks.  This is my friend and I will make certain Nate gets a good, 
solid beating.

-- 
Eric F Crist
AdTech Integrated Systems, Inc
(612) 998-3588

pgp0.pgp
Description: signature


Re: test

2004-01-12 Thread Marty Landman
At 06:56 PM 1/12/2004, Nathan Alan Souer wrote:
test
did we pass?

Marty Landman   Face 2 Interface Inc 845-679-9387
Sign On Required: Web membership software for your site
Make a Website: http://face2interface.com/Home/Demo.shtml
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Console ps2 mouse behavior control (was : Re: test)

2003-11-30 Thread Ion-Mihai Tetcu
Note: this should go on questions@, please follow up there.

On Sun, 30 Nov 2003 14:07:53 +0100
Laurent Demaret <[EMAIL PROTECTED]> wrote:

> 
> Le dimanche, 30 nov 2003, à 12:23 Europe/Paris, Dev Tugnait a écrit :
> 
> > its not quiet we are alive and kicking :)
> Good, let's see if you can kick me out from my mess ;-/
> 
> My basic purpose is to give my children a so much nice place on their 
> pc than my one on my mac.
> Instead of their win98 ..
>
> So  I rode lots of docs about freebsd (specialy handbook, faq, 
> beginners), downloaded iso images of the 5.1release and started the 
> install from cd.
> Everythings were almost nice the first time (with learning, reading, 
> understanding behind) so far I tried to add wheel mouse to my 
> configuration.
> It was a bad idea because the next time I started freebsd my rc.conf 
> had a bad character (eof instead of backquote or whatever) on the 1456 
> th line (of a 1455 lines file). 

?? 1455 lines - just curios - what did you put in there ?
my desktop:
it# wc -l /etc/rc.conf
  21 /etc/rc.conf

my router:
buh# wc -l /etc/rc.conf
  32 /etc/rc.conf

> Maybee because I made change with 
> abiword ...
> Before that time I had been able to set up a good configuration for my 
> ps2 mouse and it worked fine inside kde and even in console mode.
> 
> Unable to make a new rc.conf from the bad one I made a new install of 
> freebsd but probably not the good one as my kde taskbar don't have 
> anymore direct to shell button. (I will have a look at that later).

Alt+F2 --> konsole --> OK

> The main trouble I have now is to stop stupid behavior of my mouse : as 
> soon I move it too fast or move a couple pixels to left it refuges 
> itself on left edge of the screen. Tried to control that from kde but 
> did not get any amelioration. Kde mouse is set to sysmouse so I would 
> like to get a correct mouse behavior from sysinstall test mouse dialog.
> The best thing I can get now is with Microsoft IntelliMouse but pointer 
> still go as quick as possible to left side of the screen, whichever 
> protocol I use.
> 
> I tried many ways to come back the first time I setted, tried to 
> remember the good words to ask google but at least get exausted : how 
> to configure freebsd mouse focus (to the macos one) in console mode ?
> 
> "auto" give me the worse : each move of the mouse act as accept (or 
> refuse ?) sysinstall dialog "Is the mouse cursor moving"

Please send the output of:
it# dmesg | grep ps2
or
it# cat /var/run/dmesg.boot | grep psm

man moused will give you some hints.
Especilly:
-d  Enable debugging messages.

-f  Do not become a daemon and instead run as a foreground process. 
   Useful for testing and debugging.

-i info  Print specified information and quit.



-- 
IOnut
Unregistered ;) FreeBSD user
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: TEST. IGNORE please.

2003-11-19 Thread Greg 'groggy' Lehey
On Tuesday, 18 November 2003 at 18:59:37 +0300, Marwan Sultan wrote:
> TEST

No, I won't ignore it.  Please DO NOT SEND TEST MESSAGES to
FreeBSD-questions.  It's a good way to get unsubscribed.  If you have
problems, use FreeBSD-test: that's what it's for.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers.


pgp0.pgp
Description: PGP signature


Re: test

2003-08-14 Thread Greg 'groggy' Lehey
On Thursday, 14 August 2003 at 16:35:22 -0600, RYAN vAN GINNEKEN wrote:
> Just a test I have been having a bit of trouble posting to this list.
> Please accept my apologies for sending a test message to the list. This
> list is an invaluable resource for me and i do not want to cause any
> inconvenience to any of the users or hosts  or anyone for that
> matter

Please don't send test messages to this list.  It annoys at least
10,000 people.  Use the FreeBSD-test list instead.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers


pgp0.pgp
Description: PGP signature


Re: test message

2003-06-06 Thread Daniel Bye
On Thu, Jun 05, 2003 at 08:38:33AM -0700, Lawrence koffer wrote:
> test

Sorry, you fail.

There is a list specifically for testing, so you don't have to pollute the
real lists.  It is, now this is inspired, [EMAIL PROTECTED]

-- 
Daniel Bye

PGP Key: ftp://ftp.slightlystrange.org/pgpkey/dan.asc
PGP Key fingerprint: 3D73 AF47 D448 C5CA 88B4 0DCF 849C 1C33 3C48 2CDC
 _
  ASCII ribbon campaign ( )
 - against HTML, vCards and  X
- proprietary attachments in e-mail / \
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: test

2003-03-28 Thread Greg 'groggy' Lehey
On Thursday, 27 March 2003 at 21:31:09 +0100, ptiJo wrote:
> test

Please do not send test mail to FreeBSD-questions.  We have a separate
mailing list for that.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers


pgp0.pgp
Description: PGP signature
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Test please reply back to me

2003-03-20 Thread Greg 'groggy' Lehey
On Thursday, 20 March 2003 at 16:55:57 -0800, Alisha Stephanie Outridge wrote:
> CAN I SEE THIS?

Please don't send test messages to FreeBSD-questions.

Greg
--
See complete headers for address and phone numbers


pgp0.pgp
Description: PGP signature


Re: test

2002-12-04 Thread Alex

Dear/Beste 불량,

Tuesday, December 3, 2002, 10:15:10 AM, you wrote:

> test

> _
> MSN Messenger¸¦ ÅëÇØ ¿Â¶óÀÎ»ó¿¡ Àִ ģ±¸¿Í ´ëÈ­¸¦ ³ª´©¼¼¿ä.  
> http://messenger.msn.co.kr 


> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-questions" in the body of the message

Please help keep the mailling list free and use the test mailing list.

-- 
Best regards/Met vriendelijke groet,
Alex


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



Re: Test

2002-11-02 Thread Kizer

- Original Message - 
From: "Greg 'groggy' Lehey" <[EMAIL PROTECTED]>
To: "Kizer" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Saturday, November 02, 2002 8:40 PM
Subject: Re: Test


> On Saturday,  2 November 2002 at 20:39:02 -0600, Kizer wrote:
> > Testing, thanks.
> 
> Please don't send test messages to FreeBSD-questions.  You
> inconvenience thousands of people.  Use the FreeBSD-test mailing list
> instead: that's what it's there for.
> 
> Greg
> --
> When replying to this message, please copy the original recipients.
> If you don't, I may ignore the reply or reply to the original recipients.
> For more information, see http://www.lemis.com/questions.html
> See complete headers for address and phone numbers
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-questions" in the body of the message
> 

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



Re: Test

2002-11-02 Thread Greg 'groggy' Lehey
On Saturday,  2 November 2002 at 20:39:02 -0600, Kizer wrote:
> Testing, thanks.

Please don't send test messages to FreeBSD-questions.  You
inconvenience thousands of people.  Use the FreeBSD-test mailing list
instead: that's what it's there for.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



Re: Test

2002-07-25 Thread Kent Stewart



Tim wrote:

> I haven't been getting any email from the list for a few days. I did have a 
> snafu with my email (users and groups IDs got hosed somehow) and I wasn't 
> getting ANY, but now I'm getting e-mail, but not from this list.
> 
> Maybe I have been removed due to bounce e-mail or something.
> 
> If so, I'll sign up again.


That happens. If you bounce very many messages, you get dropped. You 
can always check your status by sending the text "which" to the 
majordomo. It will tell you what lists, you are subscribed to.

Kent


> 
> Tim
> 


-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



Re: test

2002-07-24 Thread Matt Snow

I got it..

* * * * * * * *
Matt Snow
 (@) [EMAIL PROTECTED]
 (w) http://slakin.net.

On Wed, 24 Jul 2002, RDWestSr wrote:

> my mail isn't going to list for some reason
>
>
>
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-questions" in the body of the message
>


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message