On 04/14/2016 01:43 PM, Christian F Buser via Mailman-Users wrote: > > Therefore it would be helpful if we could mass-mail the same > "welcome"-message which is usually sent to new subscribers. > > What are our possibilities here? Or can all subscribers ask themselves for > such a message?
See the script at <https://www.msapiro.net/scripts/get_welcome> (mirrored at <https://fog.ccsf.edu/~msapiro/scripts/get_welcome>. It only does one user at a time, but ou could do something like: #~/bin/bash for list in `mailman/bin/list_lists --bare`; do for user in `mailman/bin/list_members $list`; do mailman/bin/get_welcome --mail $list $user done done -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] https://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: https://mail.python.org/mailman/options/mailman-users/archive%40jab.org
