12 lines
417 B
Plaintext
12 lines
417 B
Plaintext
|
def agent_mailcow_arguments(params, hostname, ipaddress):
|
||
|
return [
|
||
|
"--hostname", params["hostname"],
|
||
|
"--apikey", params["apikey"],
|
||
|
"--port", params["port"],
|
||
|
"--no-https", params["no_https"],
|
||
|
"--no-cert-check", params["no_cert_check"],
|
||
|
ipaddress,
|
||
|
]
|
||
|
|
||
|
special_agent_info['mailcow'] = agent_mailcow_arguments
|