Re: 'Which' Mailing List Command

2011-09-18 Thread Matthew Seaman
On 18/09/2011 22:11, Jason C. Wells wrote:
> There used to be a command to get a list of subscriptions from
> majordomo.  What is the equivalent for mailman?  I just got the help
> command for -questions.  There doesn't seem to be a 'which' command.

For mailman, you can access the list of subscribers from the web
interface *if* you are a list admin.  Well, in theory you could see it
if the list has been configured to show all subscribers to anyone, but
no-one sane configures mailman that way, given the potential for address
harvesting by spammers.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
JID: matt...@infracaninophile.co.uk   Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


'Which' Mailing List Command

2011-09-18 Thread Jason C. Wells
There used to be a command to get a list of subscriptions from 
majordomo.  What is the equivalent for mailman?  I just got the help 
command for -questions.  There doesn't seem to be a 'which' command.


Thanks,
Jason
___
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: Which mailing list?

2008-09-29 Thread Leslie Jensen


Mel skrev:

On Monday 29 September 2008 17:06:56 Leslie Jensen wrote:

Mel skrev:

On Monday 29 September 2008 13:47:45 Leslie Jensen wrote:

  I'm running FreeBSD 7.1-PRERELEASE and I want to keep track on when
it's updated so that I can upgrade. I'm on the freebsd-announce list but
  I'm not sure if it's the right list to follow for this purpose.
/Leslie

If your intention is to know when 7.1-RELEASE is available and possibly
track security advisories afterwards, it is the correct list:
http://lists.freebsd.org/pipermail/freebsd-announce/2008-February/001172.
html

Well, my intention is to be updated even on the prerelease. As I
understand from the answers, it might be somewhat ambiguous. Do you
recommend that I update once a week for example. I understand that not
all modifications will affect me, some will of course others will not


Depends what you want. Everything that goes on RELENG_7 branch currently, is a 
bug fix. Each bug fix, has the risk of introducing a regression bug.
If you want to part of the process that tests this PRERELEASE and report any 
bugs, confirming bugfixes etc, then you should track RELENG_7. Best way to do 
that is to csup your system in the daily periodic(7). Then you can see if any 
fixes have been comitted, and rebuild your system.


If you simply want to know if your system still works, subscribe to announce 
to know when to stop testing and to build the final release, and build 
whenever you have time.


The script below my sig, adds csup to daily, when adding 
daily_csup_enable="YES" to /etc/periodic.conf and putting the proper csup 
file in the proper loc and/or setting the variables in /etc/periodic.conf.




Thanks! I'll try it out.
/Leslie
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Which mailing list?

2008-09-29 Thread Mel
On Monday 29 September 2008 17:06:56 Leslie Jensen wrote:
> Mel skrev:
> > On Monday 29 September 2008 13:47:45 Leslie Jensen wrote:
> >>   I'm running FreeBSD 7.1-PRERELEASE and I want to keep track on when
> >> it's updated so that I can upgrade. I'm on the freebsd-announce list but
> >>   I'm not sure if it's the right list to follow for this purpose.
> >> /Leslie
> >
> > If your intention is to know when 7.1-RELEASE is available and possibly
> > track security advisories afterwards, it is the correct list:
> > http://lists.freebsd.org/pipermail/freebsd-announce/2008-February/001172.
> >html
>
> Well, my intention is to be updated even on the prerelease. As I
> understand from the answers, it might be somewhat ambiguous. Do you
> recommend that I update once a week for example. I understand that not
> all modifications will affect me, some will of course others will not

Depends what you want. Everything that goes on RELENG_7 branch currently, is a 
bug fix. Each bug fix, has the risk of introducing a regression bug.
If you want to part of the process that tests this PRERELEASE and report any 
bugs, confirming bugfixes etc, then you should track RELENG_7. Best way to do 
that is to csup your system in the daily periodic(7). Then you can see if any 
fixes have been comitted, and rebuild your system.

If you simply want to know if your system still works, subscribe to announce 
to know when to stop testing and to build the final release, and build 
whenever you have time.

The script below my sig, adds csup to daily, when adding 
daily_csup_enable="YES" to /etc/periodic.conf and putting the proper csup 
file in the proper loc and/or setting the variables in /etc/periodic.conf.

-- 
Mel

$ cat /usr/local/etc/periodic/daily/340.csup
#!/bin/sh
#

if [ -r /etc/defaults/periodic.conf ]
then
. /etc/defaults/periodic.conf
source_periodic_confs
fi
# Set defaults
daily_csup_enable=${daily_csup_enable:-"NO"}
daily_csup_files=${daily_csup_files:-"/etc/stable-supfile"}
daily_csup_flags=${daily_csup_flags:-"-L2"}

case "$daily_csup_enable" in
[Yy][Ee][Ss])
echo ''
echo 'Running csup:'
for file in ${daily_csup_files}; do
/usr/bin/csup ${daily_csup_flags} ${file}
rc=$((${rc} + $?))
done
echo ''
;;
*) rc=0;;
esac
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Which mailing list?

2008-09-29 Thread Leslie Jensen



Mel skrev:

On Monday 29 September 2008 13:47:45 Leslie Jensen wrote:

  I'm running FreeBSD 7.1-PRERELEASE and I want to keep track on when
it's updated so that I can upgrade. I'm on the freebsd-announce list but
  I'm not sure if it's the right list to follow for this purpose.
/Leslie
If your intention is to know when 7.1-RELEASE is available and possibly track 
security advisories afterwards, it is the correct list:

http://lists.freebsd.org/pipermail/freebsd-announce/2008-February/001172.html

Well, my intention is to be updated even on the prerelease. As I 
understand from the answers, it might be somewhat ambiguous. Do you 
recommend that I update once a week for example. I understand that not 
all modifications will affect me, some will of course others will not

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


Re: Which mailing list?

2008-09-29 Thread Mel
On Monday 29 September 2008 13:47:45 Leslie Jensen wrote:
>   I'm running FreeBSD 7.1-PRERELEASE and I want to keep track on when
> it's updated so that I can upgrade. I'm on the freebsd-announce list but
>   I'm not sure if it's the right list to follow for this purpose.
> /Leslie
If your intention is to know when 7.1-RELEASE is available and possibly track 
security advisories afterwards, it is the correct list:
http://lists.freebsd.org/pipermail/freebsd-announce/2008-February/001172.html

-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Which mailing list?

2008-09-29 Thread Matthew Seaman

Leslie Jensen wrote:


 I'm running FreeBSD 7.1-PRERELEASE and I want to keep track on when 
it's updated so that I can upgrade. I'm on the freebsd-announce list but 
 I'm not sure if it's the right list to follow for this purpose.

/Leslie


At the moment there hasn't been a RELENG_7_1 tag laid down, so anything
labelled 7.1 is from the RELENG_7 branch.  Technically both of RELENG_7
and any RELENG_7_x are covered by the freebsd-stable@ mailing list,
although there is not usually any great amount of traffic to do with the 
progress of new releases there.


Also, RELENG_7 is a development branch: patches and updates are added to
it all the time without any special fanfare or announcements; although
right now as we're in the middle of a release process, that's being 
controlled by the Release Engineering team and is limited to bug fixes

and release preparations.

If you really want to track all the activity on RELENG_7 then you can
join one of the lists that distributes CVS e-mails. This is the most
appropriate one for your purposes:

http://lists.freebsd.org/mailman/listinfo/cvs-src

Even so, that contains all the messages about all the commits to all the 
branches of the src collection, not just to RELENG_7.  You'll need to
filter it pretty  stringently to pull out just the stuff you're interested 
in.  I believe there is an internal FreeBSD service somewhere which provides 
quite fine grained filtering, but it may only be available to people with 
@freebsd.org accounts.  (I saw it mentioned on a mailing list many years ago 
but I've mostly forgotten what I knew about it.)


Cheers,

Matthew

--
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
 Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
 Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


Re: Which mailing list?

2008-09-29 Thread Nash Nipples

> I'm running FreeBSD 7.1-PRERELEASE and I want to keep
> track on when 
> it's updated so that I can upgrade. I'm on the
> freebsd-announce list but 
>   I'm not sure if it's the right list to follow for
> this purpose.
> /Leslie
> 
> 
> 
you will be surprised how often the code is getting modified and becomes 
instantly available for updating over cvs and svn routines. sending 
notifications to [EMAIL PROTECTED] in my opinion would be nice but speaking in 
terms of data management very inappropriate since it is already there available 
for you in updated applications change log as well as planned in the todo list 
bundled with the source code.

if there is something missing that only you could have expected i think it 
doesnt worth a while discussing it with someone who isnt actually doing it


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


Which mailing list?

2008-09-29 Thread Leslie Jensen


 I'm running FreeBSD 7.1-PRERELEASE and I want to keep track on when 
it's updated so that I can upgrade. I'm on the freebsd-announce list but 
 I'm not sure if it's the right list to follow for this purpose.

/Leslie



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


Re: Which mailing list.....

2002-12-09 Thread Kris Kennaway
On Mon, Dec 09, 2002 at 07:22:11PM -0500, Paul Pathiakis wrote:
> Hi,
> 
>   I'd like to know which mailing list I should post a reqest for the SiS 650 
> motherboard chipset for 5.0.  I thought they would have put this in as I 
> noticed a coupld of people requesting support back in June of 2000, but as I 
> read the hardware notes for 5.0-RC1 I see everything but the 650 Chipset.  
> Where should I post this?

I don't there's much point just asking to "add support".  It's a very
nontrivial task requiring documentation from the vendor, hardware to
test with, and dozens of hours of developer time.

Kris



msg11594/pgp0.pgp
Description: PGP signature


Which mailing list.....

2002-12-09 Thread Paul Pathiakis
Hi,

I'd like to know which mailing list I should post a reqest for the SiS 650 
motherboard chipset for 5.0.  I thought they would have put this in as I 
noticed a coupld of people requesting support back in June of 2000, but as I 
read the hardware notes for 5.0-RC1 I see everything but the 650 Chipset.  
Where should I post this?

Thanks!

Paul Pathiakis


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