Show pageOld revisionsBacklinksExport to PDFFold/unfold allBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== pears.MailServer ====== <WRAP center round info> Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. </WRAP> ===== Description ===== Mail Server configuration ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **MailServerID** | char(20) | NOT NULL | | | | ServerType | char(1) | NOT NULL | | S=SMTP I=IMAP | | Address | char(200) | NOT NULL | | | | Port | integer | NULL | | | | Timeout | integer | NULL | | | | SSL | smallint | NULL | | | ===== Primary Key ===== * MailServerID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== ^ Table ^ Constraint ^ Columns ^ Referenced columns ^ | [[database:tables:pears_agencydetails|pears.agencydetails]] | IMAPServer | IMAPServer | MailServerID | | [[database:tables:pears_agencydetails|pears.agencydetails]] | SMTPServer | SMTPServer | MailServerID | ===== Indexes ===== * No indexes found. ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."MailServer" -- Table comment: Mail Server configuration -- Statement count: 3 CREATE TABLE "pears"."MailServer" ( "MailServerID" char(20) NOT NULL ,"ServerType" char(1) NOT NULL ,"Address" char(200) NOT NULL ,"Port" integer NULL ,"Timeout" integer NULL ,"SSL" smallint NULL ,PRIMARY KEY ("MailServerID" ASC) ) go COMMENT ON COLUMN "pears"."MailServer"."ServerType" IS 'S=SMTP I=IMAP' go COMMENT ON TABLE "pears"."MailServer" IS 'Mail Server configuration' go </code> database/tables/pears_mailserver.txt Last modified: 2026/08/07 19:24by 127.0.0.1