Hi all
We have moved 3 mailing lists from another system to a Mailman installation (Mailman version 2.1.20). All user addresses have been imported from the old installation, so a user should not notice the new software - unless he wants to change something in his subscription.
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?
Thank you, Christian
--
Christian F. Buser, Hohle Gasse 6, CH-5507 Mellingen (Switzerland)
Hilfe fuer Strassenkinder in Ghana: http://www.chance-for-children.org
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 <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
participants (2)
-
Christian F Buser
-
Mark Sapiro