diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2013-12-15 04:59:30 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:51:24 +0200 |
commit | 8dfcb7e08442b4af8f285bdd7732750938b25b9f (patch) | |
tree | dde0f58223a49ff729efd96014b0bf5b57681617 /lib/postmulti | |
parent | 3d2f023cb27126e879ac3522169cf813507b58ba (diff) |
Use postmulti to run postconf per instance.
Diffstat (limited to 'lib/postmulti')
-rw-r--r-- | lib/postmulti | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/postmulti b/lib/postmulti index 6aed553..cad01f8 100644 --- a/lib/postmulti +++ b/lib/postmulti @@ -19,11 +19,17 @@ # Look up postfix configuration variable def postconf(k, instance=None): - cmd = [ os.path.join(os.sep, 'usr', 'sbin', 'postconf') ] if instance: - config = os.path.join(os.sep, 'etc', 'postfix-%s' % instance) - cmd.extend([ '-c', config ]) - cmd.extend([ '-h', k ]) + cmd = [ os.path.join(os.sep, 'usr', 'sbin', 'postmulti') + , '-x' + , '-i', instance + , '--' + ] + else: + cmd = [] + + cmd.extend([ os.path.join(os.sep, 'usr', 'sbin', 'postconf') + , '-h', k ]) return subprocess.check_output(cmd, stderr=subprocess.STDOUT).rstrip() |