[Mailman-Users] default action on administrative requests?

2017-07-04 Thread Ralf Hildebrandt
The  default action on administrative requests is "defer". I'd like to
set that to "accept" for a particular list. Is this possible?

-- 
Ralf Hildebrandt   Charite Universitätsmedizin Berlin
ralf.hildebra...@charite.deCampus Benjamin Franklin
https://www.charite.de Hindenburgdamm 30, 12203 Berlin
Geschäftsbereich IT, Abt. Netzwerk fon: +49-30-450.570.155
--
Mailman-Users mailing list Mailman-Users@python.org
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


Re: [Mailman-Users] default action on administrative requests?

2017-07-04 Thread Mark Sapiro
On 7/4/17 6:11 AM, Ralf Hildebrandt wrote:
> The  default action on administrative requests is "defer". I'd like to
> set that to "accept" for a particular list. Is this possible?


There is currently no setting or config option for that.

An implementation of a list setting for the default would be
non-trivial. A hack to do it based on listname would be simpler.

If this is for a python.org list, let's discuss this off list.

-- 
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
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


[Mailman-Users] Send confirmation emails to user that sign up for my site

2017-07-04 Thread kayla . manchette
I have a site where users are able to sign up. When they sign up to the 
site, their information is stored in a database on the server.


What I want to do is send users that sign up an email for them to 
confirm the account they just made. The email would include a code and a 
link for the account verification page.


Is there anyway that I can link the database from my server to mailman 
so that mailman can send these emails out?

--
Mailman-Users mailing list Mailman-Users@python.org
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


Re: [Mailman-Users] Send confirmation emails to user that sign up for my site

2017-07-04 Thread Mark Sapiro
On 7/4/17 2:50 PM, kayla.manche...@devplateau.com wrote:
> 
> What I want to do is send users that sign up an email for them to
> confirm the account they just made. The email would include a code and a
> link for the account verification page.
> 
> Is there anyway that I can link the database from my server to mailman
> so that mailman can send these emails out?


I'm guessing you want something analogous to Mailman's subscription
confirmation process and that's why you're thinking of Mailman, but it
would be simpler and more straightforward to just send the email outside
of Mailman. Mailman is designed to send messages to the members of
lists, not to arbitrary individuals.

Mailman uses Python's smtplib to send mail
( for Python3,
 for Python2.7).

While it would be possible to use Mailman's Message class to create and
send a message, it would be simpler to just create a plain text email
from a template and use smtplib to send it.

-- 
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
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


Re: [Mailman-Users] Send confirmation emails to user that sign up for my site

2017-07-04 Thread Richard Damon

On 7/4/17 5:50 PM, kayla.manche...@devplateau.com wrote:
I have a site where users are able to sign up. When they sign up to 
the site, their information is stored in a database on the server.


What I want to do is send users that sign up an email for them to 
confirm the account they just made. The email would include a code and 
a link for the account verification page.


Is there anyway that I can link the database from my server to mailman 
so that mailman can send these emails out? 
The one way I can think to do it, and it is a bit of a Rube-Goldberg, is 
to create a dummy mailing list, and then when the user signs up to your 
site, you create a subscription for them on the mailing list, with 
confirmation required. When they do confirm, mailman can send out an 
email that you can catch to see that they confirmed, or you can just 
interrogate the list to see if they are on the subscriber list (they 
won't be until they subscribe).


This does create a lot of complexity, and possibly confusion if there 
isn't a need for a linked mailing list, it is likely simpler to just 
look at the code mailman uses and borrow the appropriate parts, this 
isn't THAT hard of a function.


--
Richard Damon

--
Mailman-Users mailing list Mailman-Users@python.org
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


Re: [Mailman-Users] Send confirmation emails to user that sign up for my site

2017-07-04 Thread Richard Shetron
If the web backend can generate the code and email for the message and 
you are on a *nix system then all you have to do is:


cat  | sendmail -r  -s "" 

message can usually contain additional headers depending on the command 
line options.  message can be a canned message if you put the code in 
the subject.  You may need to make this a shell script or use some type 
of shell wrapper.


see man sendmail (even if you are not using sendmail, there is often a 
stub with other mailers to allow sending email with the sendmail command 
line interface for compatibility.


On 7/4/17 5:50 PM, kayla.manche...@devplateau.com wrote:
I have a site where users are able to sign up. When they sign up to the 
site, their information is stored in a database on the server.


What I want to do is send users that sign up an email for them to 
confirm the account they just made. The email would include a code and a 
link for the account verification page.


Is there anyway that I can link the database from my server to mailman 
so that mailman can send these emails out?

--
Mailman-Users mailing list Mailman-Users@python.org
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/guest2%40sgeinc.com



--
Mailman-Users mailing list Mailman-Users@python.org
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