depollueur/README.md

54 lines
1.3 KiB
Markdown
Raw Normal View History

2021-05-06 09:56:47 +02:00
# Dépollueur de courriel
2021-05-07 09:34:13 +02:00
## Contenu
```
depollueur/
├── LICENCE
├── README.md
└── src
├── bash
│   └── filter.sh
├── cpp
│   ├── Attachment.cpp
│   ├── eMailShrinker.cpp
│   ├── EmbeddedData.cpp
│   ├── kazDebug.cpp
│   ├── kazMisc.cpp
│   ├── MainAttachment.cpp
│   └── SizeArg.cpp
├── include
│   ├── Attachment.hpp
│   ├── EmbeddedData.hpp
│   ├── kazDebug.hpp
│   ├── kazMisc.hpp
│   ├── MainAttachment.hpp
│   └── SizeArg.hpp
└── Jirafeau
├── f.php
└── t.php
```
2021-05-07 09:21:15 +02:00
## Compilation
```bash
2022-12-23 11:39:44 +01:00
sudo apt-get install --fix-missing build-essential make g++ libboost-program-options-dev libboost-system-dev libboost-filesystem-dev libcurl4-gnutls-dev libssl-dev doxygen dos2unix
2021-05-07 09:21:15 +02:00
git clone https://git.kaz.bzh/KAZ/depollueur.git
# or for contributors :
# git clone git+ssh://git@git.kaz.bzh:2202/KAZ/depollueur.git
make -j $(nproc)
```
2022-10-31 07:08:19 +01:00
##Astuces
Pour la mise au point dans Kaz, il faut bloquer la mise à jour automatique avec :
``` bash
touch /kaz/git/depollueur/dontupdage
/kaz/bin/container.sh stop jirafeau postfix; docker system prune; /kaz/bin/install.sh jirafeau postfix
```