Re: [Mailman-Users] deleting users over multiple lists

2007-06-04 Thread Mark Sapiro
Spyro Polymiadis >I would like to see a more sane way of unsubbing a person from all lists >easier though... As noted in the post you quoted, to remove a single address from all lists. bin/remove_members --fromall [EMAIL PROTECTED] See my reply at

Re: [Mailman-Users] deleting users over multiple lists

2007-06-04 Thread Spyro Polymiadis
Ive come up with my own little function.. its not ideal but certainly does the job - no hiccups so far with it... basically i have a script called unsubuser, it prompts you for the username of the person you wish to unsub from lists, the it calls this function i wrote, displays the lists that pe

Re: [Mailman-Users] deleting users over multiple lists

2007-06-04 Thread Mark Sapiro
Ryan Steele wrote: >Juan Miscaro wrote: >> I want to be able to go >> >> $ bin/remove_members --fromall [EMAIL PROTECTED] >> >> but I read on the mailman FAQ that regexp/globs are not permitted. >> >> Juan >> >> > >You want to use bin/withlist, which will support regular expressions. Well, yo

Re: [Mailman-Users] Low level smtp error: Server not connected

2007-06-04 Thread Mark Sapiro
Leonard Jacobs wrote: >I don't have any adjustments to the defaukt settings you mentioned in my >mm_cfg.py file, but Defaults.py state: > >[user]# grep SESSIONS Mailman/Defaults.py >SMTP_MAX_SESSIONS_PER_CONNECTION = 0 >[EMAIL PROTECTED] mailman]# grep RCPTS Mailman/Defaults.py >SMTP_MAX_RCPTS =

Re: [Mailman-Users] deleting users over multiple lists

2007-06-04 Thread Ryan Steele
Juan Miscaro wrote: > --- Ryan Steele <[EMAIL PROTECTED]> wrote: > > >> Juan Miscaro wrote: >> >>> Is there any way to delete subscriber addresses over multiple lists >>> easily (command line)? I am using Mailman 2.1.8 on OpenBSD 4.0. >>> >>> >>> >> Maybe something like this for

Re: [Mailman-Users] deleting users over multiple lists

2007-06-04 Thread Ryan Steele
Juan Miscaro wrote: > Is there any way to delete subscriber addresses over multiple lists > easily (command line)? I am using Mailman 2.1.8 on OpenBSD 4.0. > > Maybe something like this for a single user: for list in `bin/list_lists | awk '{print $1}'` do; bin/remove_members $list usernam

Re: [Mailman-Users] deleting users over multiple lists

2007-06-04 Thread Juan Miscaro
--- Ryan Steele <[EMAIL PROTECTED]> wrote: > Juan Miscaro wrote: > > Is there any way to delete subscriber addresses over multiple lists > > easily (command line)? I am using Mailman 2.1.8 on OpenBSD 4.0. > > > > > > Maybe something like this for a single user: > for list in `bin/list_lists

[Mailman-Users] deleting users over multiple lists

2007-06-04 Thread Juan Miscaro
Is there any way to delete subscriber addresses over multiple lists easily (command line)? I am using Mailman 2.1.8 on OpenBSD 4.0. I also want to be able to remove all addresses from particular domains. I am looking at the remove_members command but I'm not sure. I don't want to mess up. Than