Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 18.188.218.134
Web Server : Apache/2.4.62 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.18
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /proc/3/root/proc/2/cwd/usr/share/perl5/auto/share/dist/Mail-DMARC/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /proc/3/root/proc/2/cwd/usr/share/perl5/auto/share/dist/Mail-DMARC/mail_dmarc_schema.pgsql
-- $Id$

-- Dump of table author
-- ------------------------------------------------------------

DROP TABLE IF EXISTS author CASCADE;
CREATE TABLE author (
  id serial unique,
  org_name varchar(253) NOT NULL DEFAULT '',
  email    varchar(255) DEFAULT NULL,
  extra_contact varchar(255) DEFAULT NULL
);


-- Dump of table domain
-- ------------------------------------------------------------

DROP TABLE IF EXISTS domain CASCADE;
CREATE TABLE domain (
  id serial unique,
  domain varchar(253) NOT NULL DEFAULT '',
  UNIQUE (domain)
);


-- Dump of table report
-- ------------------------------------------------------------

DROP TABLE IF EXISTS report CASCADE;
CREATE TABLE report (
  id serial unique,
  "begin" int NOT NULL,
  "end" int NOT NULL,
  author_id int NOT NULL REFERENCES author (id) ON DELETE NO ACTION,
  rcpt_domain_id int DEFAULT NULL,
  from_domain_id int NOT NULL REFERENCES domain (id),
  uuid varchar(253) DEFAULT NULL
);


DROP TABLE IF EXISTS report_error CASCADE;
CREATE TABLE report_error (
  id serial unique,
  report_id int REFERENCES report(id) ON DELETE CASCADE,
  error varchar(255) NOT NULL DEFAULT '',
  time timestamp NOT NULL DEFAULT now()
);


-- Dump of table report_policy_published
-- ------------------------------------------------------------

DROP TABLE IF EXISTS report_policy_published CASCADE;
CREATE TABLE report_policy_published (
  id serial unique,
  report_id int NOT NULL REFERENCES report (id) ON DELETE CASCADE,
  adkim varchar(1) DEFAULT NULL,
  aspf varchar(1) DEFAULT NULL,
  p varchar(10) DEFAULT NULL,
  sp varchar(10) DEFAULT NULL,
  pct int DEFAULT NULL,
  rua varchar(255) DEFAULT NULL
);


-- Dump of table report_record
-- ------------------------------------------------------------

DROP TABLE IF EXISTS report_record CASCADE;
CREATE TABLE report_record (
  id serial unique,
  report_id int NOT NULL REFERENCES report (id) ON DELETE CASCADE,
  source_ip INET NOT NULL,
  count int DEFAULT NULL,
  disposition varchar(10) NOT NULL,
  dkim varchar(4) NOT NULL DEFAULT '',
  spf varchar(4) NOT NULL DEFAULT '',
  envelope_to_did int DEFAULT NULL,
  envelope_from_did int DEFAULT NULL,
  header_from_did int NOT NULL
);


DROP TABLE IF EXISTS report_record_reason CASCADE;
CREATE TABLE report_record_reason (
  id serial unique,
  report_record_id int NOT NULL REFERENCES report_record (id) ON DELETE CASCADE,
  type varchar(24) NOT NULL,
  comment varchar(255) DEFAULT NULL
);


-- Dump of table report_record_dkim
-- ------------------------------------------------------------

DROP TABLE IF EXISTS report_record_dkim CASCADE;
CREATE TABLE report_record_dkim (
  id serial unique,
  report_record_id int NOT NULL REFERENCES report_record (id) ON DELETE CASCADE,
  domain_id int NOT NULL,
  selector varchar(253) DEFAULT NULL,
  result varchar(9) NOT NULL DEFAULT '',
  human_result varchar(64) DEFAULT NULL
);


-- Dump of table report_record_spf
-- ------------------------------------------------------------

DROP TABLE IF EXISTS report_record_spf CASCADE;
CREATE TABLE report_record_spf (
  id serial unique,
  report_record_id int NOT NULL REFERENCES report_record (id) ON DELETE CASCADE,
  domain_id int NOT NULL,
  scope varchar(5) DEFAULT NULL,
  result varchar(9) NOT NULL
);


-- Indexes
-- -----------------------------------------------------------

CREATE INDEX report_record_spf_report_record_id_idx ON  report_record_spf(report_record_id);
CREATE INDEX report_record_dkim_report_record_id_idx ON report_record_dkim(report_record_id);
CREATE INDEX report_record_report_id_idx ON report_record(report_id);
CREATE INDEX report_record_reason_report_record_id_idx ON report_record_reason(report_record_id);
CREATE INDEX report_policy_published_report_id_idx ON report_policy_published(report_id);

Anon7 - 2022
AnonSec Team