of majordomo-1.94.5. Majordomo is a program which automates the management of Internet mailing lists. Commands are sent to Majordomo via electronic mail to handle all aspects of list maintainance. Once a list is set up, virtually all operations can be performed remotely, requiring no intervention upon the postmaster of the list site. majordomo - n: a person who speaks, makes arrangements, or takes charge for another. From latin "major domus" - "master of the house".
13 lines
375 B
Text
13 lines
375 B
Text
$NetBSD: patch-al,v 1.1.1.1 2006/07/17 18:11:36 kheinz Exp $
|
|
|
|
--- bin/mj_trigger.orig 2005-06-19 19:04:30.000000000 +0200
|
|
+++ bin/mj_trigger
|
|
@@ -6,6 +6,8 @@ BEGIN {
|
|
$::LOCKDIR= "blah";
|
|
$::UID = "baduid";
|
|
$::GID = "badgid";
|
|
+$::UID =getpwnam($::UID);
|
|
+$::GID =getgrnam($::GID);
|
|
$::UMASK = "007";
|
|
|
|
$SIG{__WARN__} = sub {print STDOUT "--== $_[0]"};
|