-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.conf.example
More file actions
78 lines (64 loc) · 3.35 KB
/
config.conf.example
File metadata and controls
78 lines (64 loc) · 3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#==============================================================================
# Configuration GitLab Public Repository Monitor
# English version below
#==============================================================================
#------------------------------------------------------------------------------
# Configuration GitLab (Obligatoire)
# GitLab Configuration (Required)
#------------------------------------------------------------------------------
# URL de votre instance GitLab (sans slash à la fin)
# URL of your GitLab instance (without trailing slash)
GITLAB_URL="https://gitlab.example.com"
#------------------------------------------------------------------------------
# Configuration Email (Obligatoire)
# Email Configuration (Required)
#------------------------------------------------------------------------------
# Langue des notifications ("FR" ou "EN")
# Le script chargera le fichier template.fr.md ou template.en.md en conséquence.
#
# Notification language ("FR" or "EN")
# The script will load the corresponding template.fr.md or template.en.md file.
NOTIFICATION_LANGUAGE="FR"
# Adresse email de destination pour les notifications
# Destination email address for notifications
EMAIL_TO="[email protected]"
# Adresse email d'expéditeur
# Sender email address
EMAIL_FROM="[email protected]"
# Sujet de l'email (la variable $REPONAME sera remplacée)
# Email subject (the $REPONAME variable will be replaced)
EMAIL_SUBJECT_FR="⚠️ Nouveau dépôt public détecté: \$REPONAME"
EMAIL_SUBJECT_EN="⚠️ New public repository detected: \$REPONAME"
#------------------------------------------------------------------------------
# Configuration SMTP (Optionnelle)
# SMTP Configuration (Optional)
#------------------------------------------------------------------------------
# Décommentez et remplissez ces lignes pour utiliser un serveur SMTP externe.
# Uncomment and fill in these lines to use an external SMTP server.
#------------------------------------------------------------------------------
#===[ SMTP Server (Optional) ]===#
# If you prefer to use an external SMTP server instead of the local sendmail command,
# fill in the details below. If SMTP_SERVER is set, the script will use curl to send emails.
# Si vous préférez utiliser un serveur SMTP externe plutôt que la commande sendmail locale,
# remplissez les détails ci-dessous. Si SMTP_SERVER est défini, le script utilisera curl.
# SMTP_SERVER="smtp.example.com"
# SMTP_PORT="25" # (587 for TLS, 465 for SSL)
# SMTP_USER="your_smtp_user"
# SMTP_PASS="your_password"
# SMTP_TLS="true" # Set to "true" to use SMTPS (recommended)
#===[ Carbon Copy (CC) Options ]===#
# Set to 'true' to CC the last committer on the notification email.
# The committer's email is retrieved via the GitLab API.
# Mettre à 'true' pour mettre en copie (CC) le dernier committer sur l'email de notification.
# L'email du committer est récupéré via l'API GitLab.
CC_COMMIT_AUTHOR=false
#------------------------------------------------------------------------------
# Configuration avancée (Optionnelle)
# Advanced Configuration (Optional)
#------------------------------------------------------------------------------
# Timeout pour les appels réseau (en secondes)
# Network call timeout (in seconds)
API_TIMEOUT=30
# Niveau de log (DEBUG, INFO, WARN, ERROR)
# Log level (DEBUG, INFO, WARN, ERROR)
LOG_LEVEL="INFO"