I'm trying to write php code to change the description name of mailman's mailing list automatically using the php's system() function. But I don't know how can I do.
<?php
system('bin/withlist -l market
m.description = 'NewName'
m.Save()
exit()');
?>
Here is the command line commands to change the description name:
$ bin/withlist -l market
>>> m.description = 'NewName'
>>> m.Save()
>>> exit()
Please help me
You can using
<<<
andpy_eval()
function to run python code.More information: http://www.csh.rit.edu/~jon/projects/pip/