Removing pipes

This commit is contained in:
Rodolphe Bréard 2023-04-30 16:30:41 +02:00
parent 1fadcde028
commit bdef34c55b

View file

@ -123,9 +123,7 @@ def start_opensmtpd(cfg_path):
"-f",
cfg_path.name,
]
p = subprocess.Popen(
args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE
)
p = subprocess.Popen(args)
time.sleep(5)
return p.pid