mirror of
https://github.com/opnsense/plugins.git
synced 2026-06-04 22:33:07 -04:00
mail/postfix: allow HA config sync (#1266)
This commit is contained in:
parent
3b54e08241
commit
1069a55a70
3 changed files with 14 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue