Re: [Mailman-Users] Web interface domain woes

2009-12-14 Thread Stephen J. Turnbull
Barry Warsaw writes:
 > On Dec 14, 2009, at 02:58 PM, Mark Sapiro wrote:
 > 
 > >Run fux_url?
 > 
 > Freudian slip? :)

Definite "Typo of the Month" candidate!

--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Error running bin/mailmanctl restart

2009-12-14 Thread Mark Sapiro
Paul Kleeberg wrote:

>In my migration of a MacOS 10.5.8 server from mailman 2.1.9 to 2.1.12, I 
>discovered I had to install Python 2.5.4 and XCode 3.2.1 to get a compiler.  
>It compiled with the command:
>
>/configure --prefix=/usr/share/mailman --with-cgi-gid=_www 
>--with-mail-gid=mail --with-mailhost=domain.com --with-urlhost=domain.com
>
>But now when I try and run  I get:
>
>server:mailman-2.1.12 paul$ sudo /usr/share/mailman/bin/mailmanctl restart
>Restarting Mailman's master qrunner
>PID unreadable in: /usr/share/mailman/data/master-qrunner.pid
>[Errno 2] No such file or directory: 
>'/usr/share/mailman/data/master-qrunner.pid'
>Is qrunner even running?
>
>I find the .pid file in:
>
>/private/var/mailman/data/master-qrunner.pid
>
>Should I be adding something to the configure command?


At a minimum. you seem to need 

  --with-var-prefix=/var/mailman

(I think /var is a symlink to /private/var in Mac OS X).

-- 
Mark Sapiro The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Web interface domain woes

2009-12-14 Thread Barry Warsaw
On Dec 14, 2009, at 02:58 PM, Mark Sapiro wrote:

>Run fux_url?

Freudian slip? :)

-Barry


signature.asc
Description: PGP signature
--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Re: [Mailman-Users] Web interface domain woes

2009-12-14 Thread Mark Sapiro
John Lieber wrote:

>I nearly complete setting up my new list server however I am running into a 
>problem with the web interface.  The interface is resolving to a different 
>FQDN than what I want.  I have edited the mm_cfg_py and restarted mailman 
>(added DEFAULT_URL_HOST and DEFAULT_MAIL_HOST) and am at a loss as to what to 
>do next


Run fux_url?

See the FAQ at .

-- 
Mark Sapiro The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Mass Removal

2009-12-14 Thread Terri Oda

Adam McGreggor wrote:

On Mon, Dec 14, 2009 at 09:48:15PM +1000, certuspersonality wrote:

Is it possible to mark all members in the 'unsub' column in one go?


greasemonkey? A few GM scripts for Mailman have been written: I can't
remember what for, though. Search the list archives for greasemonkey,
perhaps?


Here's one that should work, although it's not too well tested:

// Begin script
var inputs = document.getElementsByTagName("input");

for (var i=0; i < inputs.length; i++){
if(inputs[i].type == 'checkbox' &&
inputs[i].name.indexOf("_unsub") > 0){
inputs[i].checked = true;
}
}
// End script

Or if you don't have greasemonkey, here's the same thing as a 
bookmarklet (In Firefox, make a bookmark and set this as the "location")


javascript:function%20unsubAll(){var%20inputs=document.getElementsByTagName("input");for(var%20i=0;i0){inputs[i].checked=true;}}}unsubAll();



--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Web interface domain woes

2009-12-14 Thread John Lieber
I nearly complete setting up my new list server however I am running into a 
problem with the web interface.  The interface is resolving to a different FQDN 
than what I want.  I have edited the mm_cfg_py and restarted mailman (added 
DEFAULT_URL_HOST and DEFAULT_MAIL_HOST) and am at a loss as to what to do 
next

Thank you in advance,
Johnathen

(Host:  OS X Tiger, Mailman 2.1.11, Postfix)

Postfix resolves to the correct domain and can send/receive emails...
--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Error running bin/mailmanctl restart

2009-12-14 Thread Paul Kleeberg
In my migration of a MacOS 10.5.8 server from mailman 2.1.9 to 2.1.12, I 
discovered I had to install Python 2.5.4 and XCode 3.2.1 to get a compiler.  It 
compiled with the command:

/configure --prefix=/usr/share/mailman --with-cgi-gid=_www --with-mail-gid=mail 
--with-mailhost=domain.com --with-urlhost=domain.com

But now when I try and run  I get:

server:mailman-2.1.12 paul$ sudo /usr/share/mailman/bin/mailmanctl restart
Restarting Mailman's master qrunner
PID unreadable in: /usr/share/mailman/data/master-qrunner.pid
[Errno 2] No such file or directory: 
'/usr/share/mailman/data/master-qrunner.pid'
Is qrunner even running?

I find the .pid file in:

/private/var/mailman/data/master-qrunner.pid

Should I be adding something to the configure command?

Paul
--
Paul Kleeberg
p...@fpen.org


--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Mailman 2.1.13rc1 released

2009-12-14 Thread Mark Sapiro
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I am happy to announce the first release candidate of Mailman 2.1.13.

Mailman 2.1.13 is a bug fix release and contains a new localization for
the Asturian language.

Python 2.4 is the minimum supported, but Python 2.5.or 2.6 is recommended.

See the changelog at  for
more details.

Mailman is free software for managing email mailing lists and
e-newsletters. Mailman is used for all the python.org and
SourceForge.net mailing lists, as well as at hundreds of other sites.

For more information, please see:

http://www.list.org
http://www.gnu.org/software/mailman

Mailman 2.1.13 can be downloaded from

https://launchpad.net/mailman/2.1/
http://ftp.gnu.org/gnu/mailman/

Note to translators:

The mailman.pot is up to date in this release and has been merged with
the individual message catalogs. If possible, please review your
translations and submit any changes before December 21 if you want to
get them in the 2.1.13 final release.

- --
Mark Sapiro The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (MingW32)

iEYEARECAAYFAksmk3EACgkQVVuXXpU7hpMFvQCdFQV4sgxkVEDuUNlgiNALXe6/
3jYAnAn/5+SQSPby3c3eG7MJhC187cA6
=Pby4
-END PGP SIGNATURE-
--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Distutils is not available or is incomplete for /usr/bin/python

2009-12-14 Thread Paul Kleeberg
I am upgrading a MacOSX 10.5.8 Server with Mailman 2.1.9 to 2.1.12.  In 
attempting to ./configure mailman, I encounter the following:

Distutils is not available or is incomplete for /usr/bin/python

Here is the version information I have on Python:

Python 2.5.1 (r251:54863, Feb  6 2009, 19:02:12) 
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin

Suggestions on how to proceed?  I have marginal skills.

Paul
--
Paul Kleeberg
p...@fpen.org


--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Mass Removal

2009-12-14 Thread Adam McGreggor
On Mon, Dec 14, 2009 at 09:48:15PM +1000, certuspersonality wrote:
> Is it possible to mark all members in the 'unsub' column in one go?

greasemonkey? A few GM scripts for Mailman have been written: I can't
remember what for, though. Search the list archives for greasemonkey,
perhaps?


-- 
``Treason doth ne'er prosper / And what is the reason?
  If treason should prosper / None dare call it treason.''
  (Glorious-Revolution-era ditty)
--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Mass Removal

2009-12-14 Thread Mark Sapiro
certuspersonality wrote:

>I am unable to use commands on my server, so I am looking for a way 
>to mass-remove all subscribers from a given list.
>As I can view all list subscribers on a long screen, the easiest for 
>me would be to mark the individual subscribers in the column 'unsub', 
>but it would take a long time to this for each member individually.
>Is it possible to mark all members in the 'unsub' column in one go?


Absolutely.

-- 
Mark Sapiro The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Mass Removal

2009-12-14 Thread certuspersonality
I am unable to use commands on my server, so I am looking for a way 
to mass-remove all subscribers from a given list.
As I can view all list subscribers on a long screen, the easiest for 
me would be to mark the individual subscribers in the column 'unsub', 
but it would take a long time to this for each member individually.

Is it possible to mark all members in the 'unsub' column in one go?

Herward

--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org