Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
21824997
Commit
21824997
authored
Nov 30, 2006
by
Leigh B. Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor bug fix for when USEMAILMAN is turned off.
parent
bd09a034
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
db/genelists.in
db/genelists.in
+4
-3
No files found.
db/genelists.in
View file @
21824997
...
...
@@ -509,9 +509,10 @@ sub genelist($$$$)
}
# HACK! These special accounts should be flagged in the DB
next
if
(
$usemailman
&&
(
$uid
eq
"
elabman
"
||
$uid
eq
"
elabckup
"
||
$uid
eq
"
operator
"));
if
(
!
defined
(
$uid
)
||
(
$usemailman
&&
(
$uid
eq
"
elabman
"
||
$uid
eq
"
elabckup
"
||
$uid
eq
"
operator
")));
if
(
$usemailman
&&
$MAILMANSUPPORT
)
{
print
LIST
"
$uid
$user_email
$mailman_password
'
$user_name
'
\n
";
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment