[Mailman-Developers] OT: Re: user table in Mailman3 with PostgreSQL

ML mail mlnospam at yahoo.com
Wed Jul 16 17:20:41 CEST 2014


Thanks for the details but actually I was now only asking in which table are stored the e-mail addresses of a mailing's list subscribers? I thought they would be stored in the "user" table but I can't see any e-mail addresses there, neither in the member table.





On Wednesday, July 16, 2014 4:58 PM, Daniel Kahn Gillmor <dkg at fifthhorseman.net> wrote:
On 07/16/2014 10:34 AM, ML mail wrote:
> Thanks for the trick with the double quotes to escape reserved keywords.

It's probably worth reading the PostgreSQL documentation for this sort
of thing:

http://www.postgresql.org/docs/9.3/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS


> Actually I wanted to display the content of the user table to find out in which table are the subscribers of any mailing list recorded. Do you have any idea? 

You already know how to find the content of the table:

  select * from "tablename"

If you're asking about inspecting the table structure from the psql
command line, you probably want \d "tablename" or one of its variants.
If you're not familiar with the psql command line, you probably want to
know about the two main help commands: \? and \h.

For further questions about postgresql, you should ask on a
psql-specific mailing list.  The current list is for discussing mailman,
so we are increasingly off-topic.

You can find a good set of postgresql mailing lists here:

http://www.postgresql.org/list/

Regards,




    --dkg



More information about the Mailman-Developers mailing list