Mailman moved
This commit is contained in:
parent
8c61a6b918
commit
91cd9c7f24
|
@ -1,3 +1,9 @@
|
|||
ceo (0.5.12) stable; urgency=low
|
||||
|
||||
* Fix Mailman path
|
||||
|
||||
-- Jeremy Roman <jbroman@csclub.uwaterloo.ca> Mon, 09 May 2011 19:12:09 -0400
|
||||
|
||||
ceo (0.5.11) stable; urgency=low
|
||||
|
||||
* Fix library check in and search bug introduced in 0.5.9+nmu1.
|
||||
|
|
|
@ -9,7 +9,7 @@ def main():
|
|||
user_to_add = raw_input()
|
||||
|
||||
if remote_user == user_to_add or check_group(remote_user, 'office') or check_group(remote_user, 'syscom'):
|
||||
mailman = Popen(["/var/lib/vmailman/csclub/bin/add_members", "-r", "-", "csc-general"],
|
||||
mailman = Popen(["/var/lib/mailman/bin/add_members", "-r", "-", "csc-general"],
|
||||
stdin=PIPE, stdout=PIPE, stderr=STDOUT)
|
||||
out, err = mailman.communicate("%s@csclub.uwaterloo.ca\n" % user_to_add)
|
||||
syslog.syslog(syslog.LOG_INFO, out)
|
||||
|
|
Loading…
Reference in New Issue