summaryrefslogtreecommitdiffstats
path: root/lib/postmulti
diff options
context:
space:
mode:
Diffstat (limited to 'lib/postmulti')
-rw-r--r--lib/postmulti14
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()