mail/postfix: allow HA config sync (#1266)

This commit is contained in:
Michael
2019-03-20 12:22:15 +01:00
committed by Franco Fichtner
parent 3b54e08241
commit 1069a55a70
3 changed files with 14 additions and 2 deletions
+1 -2
View File
@@ -1,6 +1,5 @@
PLUGIN_NAME= postfix
PLUGIN_VERSION= 1.8
PLUGIN_REVISION= 2
PLUGIN_VERSION= 1.9
PLUGIN_COMMENT= SMTP mail relay
PLUGIN_DEPENDS= postfix-sasl
PLUGIN_MAINTAINER= m.muenz@gmail.com
+4
View File
@@ -6,6 +6,10 @@ is completely different.
Plugin Changelog
================
1.9
* Allow HA config sync via XMLRPC
1.8
* Add TLS Wrapper to support SMTPS
@@ -59,3 +59,12 @@ function postfix_syslog()
return $syslogconf;
}
function postfix_xmlrpc_sync()
{
$result = array();
$result['id'] = 'postfix';
$result['section'] = 'OPNsense.postfix';
$result['description'] = gettext('Postfix');
return array($result);
}