Zope Plone 3.1.2 - export all users with email addresses -


I'm running a zope / plone site for almost a year - it seems that there is a fast way to get CMS It's up and running and this is a great job for it - it's running on the 3.13 plan. I am now a zopo or plan expert (in fact, as much as I read about it - the less I know I know!), But I am working on the dragon.

I have tried to export users as XML - it fails with Unicode / ID bug I have tried to run the export as a XXP file, but I actually How can I not read this file (I have tried to import etc.) but I do not know what to do next!

I have found that the scripts listing all the users, This is for Zope 2 and if I am sincere, then I will not really know how to set them.

Anyone please either

1) Tell me how to fix ID / Unicode XML Export Bug? And please tell me what can I do directly on the site? Or 2) How do I read and show the zope zexp file and make it something simple in a simple form?

I did not know that so many people were going to sign up to use my site and now I

Richard

Another way to remove users' email addresses:

  1. Visit the root of the Planon site in ZMI.
  2. Add "Script (Python)"
    1. Come up with a good ID example "Export_email".
    2. Click on "Add and edit"
    3. Change the code to a text field with the code below.
    4. Do not forget to save your changes.
  3. Visit the "Testing tab".

Code for the script:

  for the member context.portal_membership.listMembers (print): print member.getProperty ('email') Printed  

Comments