HEX
Server: Apache/2.4.63 (Unix)
System: Linux Synopilou92 4.4.302+ #72806 SMP Mon Jul 21 23:16:00 CST 2025 x86_64
User: pilou92 (1026)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /volume1/@appstore/SynologyApplicationService/etc/sql/emailaccount.sql
BEGIN;

CREATE TABLE emailaccountinfo 
(
  uid integer NOT NULL,
  email_type text NOT NULL,
  alias text NOT NULL,
  host text DEFAULT '',
  port text DEFAULT '',
  account text NOT NULL,
  passwd text DEFAULT '',
  auth text DEFAULT 'true',
  sender_account text DEFAULT '',
  sender_name text DEFAULT '',
  access_token text DEFAULT '',
  refresh_token text DEFAULT '',
  expires_in text DEFAULT '',
  is_default boolean DEFAULT false,
  tls text DEFAULT 'true',
  PRIMARY KEY (uid,alias)
);

COMMIT;