Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sympa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
riseup
sympa
Commits
3002d924
Commit
3002d924
authored
5 years ago
by
taggart
Browse files
Options
Downloads
Patches
Plain Diff
add cron mode for bulk detect that autocloses lists and gives us a report
parent
b56abec7
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/bulkdetect
+45
-6
45 additions, 6 deletions
tools/bulkdetect
with
45 additions
and
6 deletions
tools/bulkdetect
+
45
−
6
View file @
3002d924
...
...
@@ -3,9 +3,27 @@
# taggart 2019-06
$log
=
'
/var/log/sympa/wwsympa.log
';
$close
=
5000
;
$warn
=
1000
;
# if -c flag, run as a cronjob otherwise report only
if
(
$ARGV
[
0
]
eq
'
-c
'
)
{
$cron
=
1
;
}
open
(
LOG
,
"
$log
")
or
die
"
cannot open log
\n
";
# load list status into hash
$sql
=
qq(mysql -N --batch --database=sympa --execute "select name_list, status_list from list_table;")
;
open
(
SQL
,
"
$sql
|
")
or
die
"
cannot get dump of bouncers
\n
";
while
(
<
SQL
>
)
{
chomp
;
(
$name
,
$status
)
=
split
(
/\t/
);
$lists
{
$name
}
=
$status
;
}
while
(
<
LOG
>
)
{
chomp
;
if
(
m/.*\[user (.*)\] \[list (.*)\] main::do_add\(\) do_add:(.+)/
)
{
...
...
@@ -16,23 +34,44 @@ while (<LOG>) {
}
format
Foo
=
@<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<
<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
@>>>>>>
$
owner,
$list $
count
@>>>>>>
@<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<
@
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
$
count,
$list
,
$
status,$owner
.
# set output format
$~
=
'
Foo
';
# print header
$owner
=
'
Owner adding
';
$list
=
'
List
';
$count
=
'
Add
';
write
;
$list
=
'
List
';
$status
=
'
Status
';
$owner
=
'
Owner adding
';
if
(
!
$cron
)
{
write
;
}
foreach
$key
(
sort
{
$result
{
$b
}
<=>
$result
{
$a
}
}
keys
%result
)
{
(
$owner
,
$list
)
=
split
/:/
,
$key
;
$count
=
$result
{
$key
};
write
;
$status
=
$lists
{
$list
};
if
(
$cron
)
{
if
(
$status
eq
'
open
'
)
{
if
(
$result
{
$key
}
>
$close
)
{
# close
print
"
$list
is
$count
, autoclosing
\n
";
`
sympa.pl --close_list=
$list
\
@lists
.riseup.net
`
or
die
"
cannot close
$list
\n
";
}
elsif
(
$result
{
$key
}
>
$warn
)
{
# warn
print
"
$list
is
$count
, send them a warning
\n
";
}
else
{
last
;
}
}
}
else
{
write
;
}
}
## Notes
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment