delinker_fixer/BotSecrets.pm-sample

Sat, 17 Feb 2024 15:36:09 +0100

author
Peter Gervai <grin@grin.hu>
date
Sat, 17 Feb 2024 15:36:09 +0100
changeset 6
8b4e205ffc94
parent 1
ab6634389318
permissions
-rwxr-xr-x

demon.php: ease some db pressure by not querying old entries (7 days).
- replaced some rejects workaround by exclusions
- some moar debug msgs

package BotSecrets;

use strict;
use warnings;

use Exporter;
our @ISA    = qw/ Exporter /;
our @EXPORT = qw/ $db_user $db_pw $bu $bp /;

# user/password for the toolserver db
our ($db_user, $db_pw) = ("s5****", "***");

# user/password for the user (or other bot) making the changes
our ($bu,$bp) = ('****', '****' );

1;

mercurial