Skip to content

Instantly share code, notes, and snippets.

@dukenmarga
Created August 19, 2014 04:39
Show Gist options
  • Save dukenmarga/f64282c633c70e9b419b to your computer and use it in GitHub Desktop.
Save dukenmarga/f64282c633c70e9b419b to your computer and use it in GitHub Desktop.
change config for many lists in mailman
<?php
$file = 'daftarMilis';
$f=fopen($file,'r');
while($list = fgets($f)){
$list = rtrim($list);
exec("echo 'reply_to_address =\042".$list."@ftsl.itb.ac.id\042' > config.data");
exec("echo 'reply_goes_to_list = 2' >> config.data");
exec("echo 'acceptable_aliases = \042".$list."@ftsl.itb.ac.id\042' >> config.data");
exec('/usr/sbin/config_list -i config.data '.$list);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment