sogo-user-import

1.0.0 • Public • Published

sogo mail.core.io mail api user importer

Fetch a remote JSON file with the mail.core.io api schema (http://mail.core.io/api/#basic) and push it into a sogo compatible postgresql database.

Env Variables

  • PGUSER postgres user (default: postgres)
  • PGDATABASE database (default: sogo)
  • PGPASSWORD password (default: sogo)
  • PGHOST host (default: localhost)
  • PGPORT port (default: 5432)
  • VERBOSE enable verbose output (default: no)

Usage

node index.js <url-to-json>

Example Call

 PGHOST=192.168.15.138 PGPASSWORD=secret node index.js https://some.srv.customer.skylime.net/mail/export.json?token=232323232323

Database Schema

-- Table: sogo_users

-- DROP TABLE sogo_users;

CREATE TABLE sogo_users
(
  c_uid character varying(512) NOT NULL,
  c_name character varying(512),
  c_password character varying(256),
  c_cn character varying(512),
  mail character varying(512),
  CONSTRAINT sogo_users_pkey PRIMARY KEY (c_uid)
)
WITH (
  OIDS=FALSE
);

Sogo Configuration

Put this in /etc/sogo/sogo.conf

  SOGoUserSources =
    (
      {
        displayName = "Default";
        type = sql;
        id = directory;
        viewURL = "postgresql://postgres:secret@192.168.15.138:5432/sogo/sogo_users";
        canAuthenticate = YES;
        //isAddressBook = YES; // if you want the users to browse the others
        userPasswordAlgorithm = crypt;
      }
    );

Readme

Keywords

none

Package Sidebar

Install

npm i sogo-user-import

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

5.89 kB

Total Files

4

Last publish

Collaborators

  • tm
  • carlos22