OpenSMTPDAdmin
Go to file
mischa 1c10461fa7 strip urlencode / active from templates 2022-09-03 08:44:32 +00:00
VIRTUAL_VACATION remove some LF/CR 2022-08-22 18:51:26 +00:00
admin strip urlencode / active from templates 2022-09-03 08:44:32 +00:00
images Initial commit 2022-08-18 14:01:52 +02:00
languages strip urlencode / active from templates 2022-09-03 08:44:32 +00:00
templates strip urlencode / active from templates 2022-09-03 08:44:32 +00:00
users Initial commit 2022-08-18 14:01:52 +02:00
.gitignore rip and replace.. start 2022-09-02 21:06:08 +00:00
LICENSE.TXT Initial commit 2022-08-18 14:01:52 +02:00
README.md remove quota, transport, backupmx and active 2022-09-02 21:21:22 +00:00
conf.php-sample missed files 2022-09-02 21:08:29 +00:00
config.inc.php.sample make debug output optional, default false 2022-08-21 10:53:46 +00:00
create-alias.php Initial commit 2022-08-18 14:01:52 +02:00
create-mailbox.php Initial commit 2022-08-18 14:01:52 +02:00
delete.php rip and replace.. start 2022-09-02 21:06:08 +00:00
edit-active.php Initial commit 2022-08-18 14:01:52 +02:00
edit-alias.php Initial commit 2022-08-18 14:01:52 +02:00
edit-mailbox.php Initial commit 2022-08-18 14:01:52 +02:00
functions.inc.php strip urlencode / active from templates 2022-09-03 08:44:32 +00:00
index.php change setup.php logic, adding content to README 2022-08-21 10:29:42 +00:00
list-domains.php missed files 2022-09-02 21:08:29 +00:00
list-virtuals.php missed files 2022-09-02 21:08:29 +00:00
login.php rip and replace.. start 2022-09-02 21:06:08 +00:00
logout.php Initial commit 2022-08-18 14:01:52 +02:00
main.php Initial commit 2022-08-18 14:01:52 +02:00
overview.php rip and replace.. start 2022-09-02 21:06:08 +00:00
password.php Initial commit 2022-08-18 14:01:52 +02:00
search.php Initial commit 2022-08-18 14:01:52 +02:00
sendmail.php Initial commit 2022-08-18 14:01:52 +02:00
setup.php rip and replace.. start 2022-09-02 21:06:08 +00:00
stylesheet.css rip and replace.. start 2022-09-02 21:06:08 +00:00
variables.inc.php Initial commit 2022-08-18 14:01:52 +02:00
viewlog.php Initial commit 2022-08-18 14:01:52 +02:00

README.md

OpenSMTPD Admin

Fork of Postfix Admin 2.1.0 (released in 2007)

Database needed to use SQL with OpenSMTPD

CREATE DATABASE IF NOT EXISTS `opensmtpd` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE `opensmtpd`;

CREATE TABLE `admin` (
  `username` varchar(255) NOT NULL DEFAULT '',
  `password` varchar(255) NOT NULL DEFAULT '',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='OpenSMTPD Admin - Virtual Admins';

CREATE TABLE `alias` (
  `address` varchar(255) NOT NULL DEFAULT '',
  `goto` text NOT NULL,
  `domain` varchar(255) NOT NULL DEFAULT '',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='OpenSMTPD Admin - Virtual Aliases';

CREATE TABLE `domain` (
  `domain` varchar(255) NOT NULL DEFAULT '',
  `description` varchar(255) NOT NULL DEFAULT '',
  `aliases` int(10) NOT NULL DEFAULT 0,
  `mailboxes` int(10) NOT NULL DEFAULT 0,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='OpenSMTPD Admin - Virtual Domains';

CREATE TABLE `domain_admins` (
  `username` varchar(255) NOT NULL DEFAULT '',
  `domain` varchar(255) NOT NULL DEFAULT '',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='OpenSMTPD Admin - Domain Admins';

CREATE TABLE `log` (
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `username` varchar(255) NOT NULL DEFAULT '',
  `domain` varchar(255) NOT NULL DEFAULT '',
  `action` varchar(255) NOT NULL DEFAULT '',
  `data` varchar(255) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='OpenSMTPD Admin - Log';

Config for OpenSMTPTD, MySQL/MariaDB example:

# /etc/mail/smtpd.conf
table credentials mysql:/etc/mail/sql.conf
table domains mysql:/etc/mail/sql.conf
table userinfo mysql:/etc/mail/sql.conf
table virtuals mysql:/etc/mail/sql.conf

Connecting the database to smtpd:

# /etc/mail/sql.conf
host            localhost
username        opensmtpd
password        RandomString 
database        opensmtpd

query_alias             SELECT goto FROM alias WHERE address=?;
query_credentials       SELECT username, password FROM mailbox WHERE username=?;
query_domain            SELECT domain FROM domain WHERE domain=?;
query_userinfo          SELECT 501, 501, maildir FROM mailbox WHERE username=?;