| 182 | | exec("/usr/lib/alternc/mailman.create \"".escapeshellcmd($login."@".$domain)."\" \"".escapeshellcmd($owner)."\" \"".escapeshellcmd($password)."\""); |
|---|
| 183 | | return true; |
|---|
| | 182 | exec("/usr/lib/alternc/mailman.create \"".escapeshellcmd($login."@".$domain)."\" \"".escapeshellcmd($owner)."\" \"".escapeshellcmd($password)."\"", &$output, &$return); |
|---|
| | 183 | if ($return) { |
|---|
| | 184 | $err->raise("mailman", "failed to create mailman list. error: %d, output: %s", array($return, join("\n", $output))); |
|---|
| | 185 | } |
|---|
| | 186 | return !$return; |
|---|