source: interfaz/programacion/Adminmail/static/eliminausuario.py @ e6dc6c5

Last change on this file since e6dc6c5 was 464af0f, checked in by Erwin Paredes <eparedes@…>, 8 years ago

Listado, crear, eliminar usuarios individual o por lotes; auteticar desde openldap

  • Property mode set to 100644
File size: 225 bytes
Line 
1import sys
2import cgi
3
4
5sys.stdout.write("Content-Type: application/json")
6sys.stdout.write("\n") 
7sys.stdout.write("\n")
8
9form = cgi.FieldStorage() 
10
11sys.stdout.write(json.dumps({ 'data': form.getvalue('recipient-name')}))
12
Note: See TracBrowser for help on using the repository browser.