peibel80 wrote: > >I need make mail of subscription with multiple users, > >Is possible make a mail with [email protected] with several lines >of subscribe [contraseƱa] [digest|nodigest] [address=] command > >if is yes, I need a example,
This question is more appropriate for [email protected] <http://mail.python.org/mailman/listinfo/mailman-users>, but... The email subscribe interface is designed for users to request their own subscription, but it does allow alternate address specification, so it will accommodate what you want. You could send an email to [email protected] with multiple subscribe commands such as the following. You can put the first subscribe caoomand in the Subject: and the rest in the body, or you can put them all in the body with no Subject: or an innocuous subject that doesn't say "subscribe" example commands: subscribe xyz01qwe digest [email protected] subscribe [email protected] subscribe nodigest The first requests subscription for [email protected] in digest mode with list password xyz01qwe The second requests subscription for [email protected] with mode determined by the list's digest_is_default setting and a randomly generated list password The third requests subscription for the sender of the email in non-digest mode with a randomly generated list password There are other possibilities. Note that the only way to specify a 'real name' is to not specify the address= option which will then take the name and address from the From: header of the request. Also, note that these are not 'administrative' subscribes; they are user requests and as such are subject to confirmation/approval as determined by the list's subscribe_policy. -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan _______________________________________________ Mailman-Developers mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-developers Mailman FAQ: http://wiki.list.org/x/AgA3 Searchable Archives: http://www.mail-archive.com/mailman-developers%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-developers/archive%40jab.org Security Policy: http://wiki.list.org/x/QIA9
