Compare commits
71 Commits
1d19e111c3
...
test-skip
Author | SHA1 | Date | |
---|---|---|---|
94659482cf | |||
3ac1bec5d9 | |||
4c61cf5c81 | |||
aea24bbe89 | |||
bd3a2bc0c8 | |||
b0e3c5b390 | |||
eb5b3b3ec7 | |||
dae4379ad7 | |||
35a22de854 | |||
3533111a69 | |||
3a6b4b3a90 | |||
dce312c33e | |||
f6db4af4fc | |||
f51dc3f7a3 | |||
2980767d53 | |||
bb737e00f7 | |||
cf7c4102af | |||
29ba4fd0d6 | |||
d172596a5d | |||
33f539a3bb | |||
fc0455e7a8 | |||
e3bbc5ddde | |||
38085291ea | |||
9141adfb5b | |||
c9ab7d4f49 | |||
18d1214681 | |||
285792acfc | |||
53c5c29a14 | |||
61bdc3a4ba | |||
596ae82fe4 | |||
694570a454 | |||
122788c2ac | |||
49a339bdd8 | |||
fbaaf6ea3d | |||
df7a25d331 | |||
8e74856ad2 | |||
1540688c18 | |||
51865cfce2 | |||
b31762ea43 | |||
d6e167b83b | |||
9c07023316 | |||
4027e16004 | |||
8efa333b27 | |||
29480b299c | |||
6def55c5a7 | |||
c448478c39 | |||
b4ea2185f0 | |||
99e888f5d1 | |||
aa5ae1824d | |||
8cd159aacb | |||
0d5609501a | |||
48937012ca | |||
9936f8681a | |||
1ae35941b4 | |||
5d53404735 | |||
b56089ca6a | |||
2778c10c2e | |||
2f713a4e65 | |||
5bc089a94f | |||
a6640e2056 | |||
dbe0e45525 | |||
77c1bb84bd | |||
1f2bfec83a | |||
d83b89b624 | |||
bf06a130f6 | |||
9c61fd740c | |||
0d12ce7dcd | |||
779edcd6dd | |||
7190cf3113 | |||
09bdc4998d | |||
5ec61c7634 |
11
Makefile
11
Makefile
@ -58,12 +58,12 @@ JIR_OUT = $(patsubst %, $(OUT_DIR)/%, $(JIR_PRG))
|
|||||||
|
|
||||||
## FLAGS ###############################
|
## FLAGS ###############################
|
||||||
|
|
||||||
DFLAGS = -O2 -DDISABLE_LOG
|
#DFLAGS = -O2 -DDISABLE_LOG
|
||||||
#DFLAGS = -g -Wall
|
DFLAGS = -g -Wall
|
||||||
|
|
||||||
IFLAGS = $(DFLAGS) -MMD -I$(HPP_DIR) -std=c++11
|
IFLAGS = $(DFLAGS) -MMD -I$(HPP_DIR) -std=c++11
|
||||||
|
|
||||||
LFLAGS = -L$(LIB_DIR) -Bstatic -lstdc++ -lcurl -lcrypto -lboost_system -lboost_program_options -lboost_filesystem
|
LFLAGS = -L$(LIB_DIR) -lboost_system -lboost_program_options -lboost_filesystem -lcurl -lcrypto -lstdc++
|
||||||
CC = g++
|
CC = g++
|
||||||
|
|
||||||
## RULES ###############################
|
## RULES ###############################
|
||||||
@ -71,7 +71,7 @@ $(OBJ_DIR)/%.o: $(SRC_DIR)/*/%.cpp
|
|||||||
$(CC) $< $(IFLAGS) -cpp -c -o $@
|
$(CC) $< $(IFLAGS) -cpp -c -o $@
|
||||||
|
|
||||||
## ENTRIES #############################
|
## ENTRIES #############################
|
||||||
all: init eMailShrinker jirafeauAPI
|
all: init eMailShrinker jirafeauAPI doc
|
||||||
|
|
||||||
eMailShrinker: $(KAZ_OUT)
|
eMailShrinker: $(KAZ_OUT)
|
||||||
|
|
||||||
@ -83,6 +83,9 @@ jirafeauAPI: $(JIR_OUT)
|
|||||||
$(JIR_OUT): $(JIR_OBJ)
|
$(JIR_OUT): $(JIR_OBJ)
|
||||||
$(CC) $(JIR_OBJ) $(IFLAGS) -cpp -L$(LIB_DIR) $(LFLAGS) -o $@
|
$(CC) $(JIR_OBJ) $(IFLAGS) -cpp -L$(LIB_DIR) $(LFLAGS) -o $@
|
||||||
|
|
||||||
|
doc:
|
||||||
|
doxygen src/Doxyfile
|
||||||
|
|
||||||
init:
|
init:
|
||||||
mkdir -p $(OUT_DIR) $(OBJ_DIR) $(LIB_DIR)
|
mkdir -p $(OUT_DIR) $(OBJ_DIR) $(LIB_DIR)
|
||||||
|
|
||||||
|
13
README.md
13
README.md
@ -33,7 +33,7 @@ depollueur/
|
|||||||
## Compilation
|
## Compilation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
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
|
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
|
||||||
|
|
||||||
git clone https://git.kaz.bzh/KAZ/depollueur.git
|
git clone https://git.kaz.bzh/KAZ/depollueur.git
|
||||||
# or for contributors :
|
# or for contributors :
|
||||||
@ -41,3 +41,14 @@ git clone https://git.kaz.bzh/KAZ/depollueur.git
|
|||||||
|
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
##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
|
||||||
|
```
|
||||||
|
|
||||||
|
2658
src/Doxyfile
Normal file
2658
src/Doxyfile
Normal file
File diff suppressed because it is too large
Load Diff
1315
src/Jirafeau/a.php
1315
src/Jirafeau/a.php
File diff suppressed because it is too large
Load Diff
@ -89,20 +89,21 @@ if (!empty($delete_code) && $delete_code == $link['link_code']) {
|
|||||||
'</p></div>';
|
'</p></div>';
|
||||||
} else { ?>
|
} else { ?>
|
||||||
<div>
|
<div>
|
||||||
|
<form action="<?php echo 'f.php?h=' . $link_name . '&d=' . $delete_code; ?>" method="post" id="submit_delete_post" class="form login">
|
||||||
|
<input type="hidden" name="do_delete" value="1" />
|
||||||
<form action="f.php" method="post" id="submit_delete_post" class="form login">
|
<form action="f.php" method="post" id="submit_delete_post" class="form login">
|
||||||
<input type="hidden" name="do_delete" value=1/>
|
<input type="hidden" name="do_delete" value=1/>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend> <?php echo t('CONFIRM_DEL') ?> </legend>
|
<legend> <?php echo t('CONFIRM_DEL') ?> </legend>
|
||||||
<table>
|
<table>
|
||||||
<tr><td>
|
<tr><td>
|
||||||
<?php echo t('GONNA_DEL') . ' "' . jirafeau_escape($link['file_name']) . '" (' . jirafeau_human_size($link['file_size']) . ').' ?>
|
<?php echo t('GONNA_DEL') . ' "' . jirafeau_escape($link['file_name']) . '" (' . jirafeau_human_size($link['file_size']) . ').' ?>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr><td>
|
<tr><td>
|
||||||
<?php echo t('USING_SERVICE'). ' <a href="tos.php" target="_blank" rel="noopener noreferrer">' . t('TOS') . '</a>.' ?>
|
<?php echo t('USING_SERVICE'). ' <a href="tos.php" target="_blank" rel="noopener noreferrer">' . t('TOS') . '</a>.' ?>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr><td>
|
<tr><td>
|
||||||
<input type="submit" id="submit_delete" value="<?php echo t('DELETE'); ?>" <?php $action_delete="'f.php?h=' . $link_name . '&d=' . $delete_code'; document.getElementById('submit_delete').submit ();"; ?>
|
<input type="submit" id="submit_delete" value="<?php echo t('DELETE'); ?>"
|
||||||
onclick="document.getElementById('submit_delete_post').action='<?php echo $action_delete; ?>"/>
|
|
||||||
</td></tr>
|
</td></tr>
|
||||||
</table>
|
</table>
|
||||||
</fieldset></form></div><?php
|
</fieldset></form></div><?php
|
||||||
@ -144,7 +145,7 @@ if (!empty($link['key'])) {
|
|||||||
'<legend>' . t('PSW_PROTEC') .
|
'<legend>' . t('PSW_PROTEC') .
|
||||||
'</legend><table><tr><td>' .
|
'</legend><table><tr><td>' .
|
||||||
t('GIMME_PSW') . ' : ' .
|
t('GIMME_PSW') . ' : ' .
|
||||||
'<input type = "password" name = "key" />' .
|
'<input type = "password" name = "key" autocomplete = "current-password"/>' .
|
||||||
'</td></tr>' .
|
'</td></tr>' .
|
||||||
'<tr><td>' .
|
'<tr><td>' .
|
||||||
t('USING_SERVICE'). ' <a href="tos.php" target="_blank" rel="noopener noreferrer">' . t('TOS') . '</a>.' .
|
t('USING_SERVICE'). ' <a href="tos.php" target="_blank" rel="noopener noreferrer">' . t('TOS') . '</a>.' .
|
||||||
@ -275,11 +276,16 @@ elseif ($link['crypted']) {
|
|||||||
}
|
}
|
||||||
/* Read file. */
|
/* Read file. */
|
||||||
else {
|
else {
|
||||||
|
if ($cfg['use_xsendfile']) {
|
||||||
|
$file_web_path = preg_replace('#^' . $_SERVER['DOCUMENT_ROOT'] . '#', '', VAR_FILES);
|
||||||
|
header('X-Sendfile: ' . $file_web_path . $p . $link['hash']);
|
||||||
|
} else {
|
||||||
$r = fopen(VAR_FILES . $p . $link['hash'], 'r');
|
$r = fopen(VAR_FILES . $p . $link['hash'], 'r');
|
||||||
while (!feof($r)) {
|
while (!feof($r)) {
|
||||||
print fread($r, 1024);
|
print fread($r, 1024);
|
||||||
}
|
}
|
||||||
fclose($r);
|
fclose($r);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($link['onetime'] == 'O') {
|
if ($link['onetime'] == 'O') {
|
||||||
@ -288,3 +294,4 @@ if ($link['onetime'] == 'O') {
|
|||||||
exit;
|
exit;
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -1,121 +0,0 @@
|
|||||||
<?php
|
|
||||||
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
|
|
||||||
|
|
||||||
require (JIRAFEAU_ROOT . 'lib/settings.php');
|
|
||||||
require (JIRAFEAU_ROOT . 'lib/functions.php');
|
|
||||||
require (JIRAFEAU_ROOT . 'lib/lang.php');
|
|
||||||
|
|
||||||
@set_time_limit (0);
|
|
||||||
/* Remove errors. */
|
|
||||||
@error_reporting (0);
|
|
||||||
|
|
||||||
if (isset ($_REQUEST ['l']) && !empty ($_REQUEST ['l']))
|
|
||||||
$linksPass = explode ("/", $_REQUEST ["l"]);
|
|
||||||
else if (isset ($_REQUEST ['h']) && !empty ($_REQUEST ['h']))
|
|
||||||
$linksPass = $_REQUEST ["h"];
|
|
||||||
else
|
|
||||||
die ("no links");
|
|
||||||
|
|
||||||
if (!is_array ($linksPass))
|
|
||||||
die ("no list is given: ".$h);
|
|
||||||
|
|
||||||
$notFoundCount=0;
|
|
||||||
$map = [];
|
|
||||||
// First pass: check
|
|
||||||
foreach ($linksPass as $line) {
|
|
||||||
if (strpos ($line, '~') !== false)
|
|
||||||
$couple = explode ("~", $line, 2);
|
|
||||||
else
|
|
||||||
$couple = explode ("/", $line, 2);
|
|
||||||
if (count ($couple) == 0)
|
|
||||||
continue;
|
|
||||||
$link_name = $couple [0];
|
|
||||||
if (!$link_name)
|
|
||||||
continue;
|
|
||||||
$crypt_key = count ($couple) == 2 ? $couple [1] : "";
|
|
||||||
if (!preg_match ('/[0-9a-zA-Z_-]+$/', $link_name))
|
|
||||||
die ("bad link format : ".$link_name);
|
|
||||||
$link = jirafeau_get_link ($link_name);
|
|
||||||
if (count ($link) == 0) {
|
|
||||||
++$notFoundCount;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$key = $link['key'];
|
|
||||||
if ($key) {
|
|
||||||
preg_match ( '/[0-9a-zA-Z_-]+/', $link['key'], $matches);
|
|
||||||
$key = $matches[1];
|
|
||||||
}
|
|
||||||
if ($key && (empty ($crypt_key) || $key != $crypt_key))
|
|
||||||
die ("bad key for ".$link);
|
|
||||||
$map [$link_name] = $crypt_key;
|
|
||||||
}
|
|
||||||
|
|
||||||
// second pass: send
|
|
||||||
if (isset ($_REQUEST ['n']) && !empty ($_REQUEST ['n']))
|
|
||||||
$dirname=$_REQUEST ['n'];
|
|
||||||
else
|
|
||||||
$dirname="kaz-".date ("Ymd-His");
|
|
||||||
$tmpFileName = tempnam (sys_get_temp_dir (), $dirname."-");
|
|
||||||
$zip = new ZipArchive;
|
|
||||||
if (!$zip)
|
|
||||||
die ("can't create tmp");
|
|
||||||
if ($zip->open ($tmpFileName.".zip", ZipArchive::CREATE) !== TRUE)
|
|
||||||
die ("can't create tmp");
|
|
||||||
|
|
||||||
if ($notFoundCount) {
|
|
||||||
$zip->addFromString ($dirname."-Avertissement.txt", $notFoundCount. ($notFoundCount ? " fichier est expiré." : " fichiers sont expirés."));
|
|
||||||
}
|
|
||||||
$single_name=[];
|
|
||||||
foreach ($map as $link_name => $crypt_key) {
|
|
||||||
$link = jirafeau_get_link ($link_name);
|
|
||||||
$p = s2p ($link ['hash']);
|
|
||||||
|
|
||||||
$src_name = $dst_name = $link['file_name'];
|
|
||||||
if (in_array ($src_name, $single_name))
|
|
||||||
for ($i = 0; $i < 10000; ++$i) {
|
|
||||||
$dst_name = sprintf ("%s-%2d", $src_name, $i);
|
|
||||||
if (!in_array ($dst_name, $single_name))
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
$single_name[]=$dst_name;
|
|
||||||
|
|
||||||
// send
|
|
||||||
if ($link['crypted']) {
|
|
||||||
$m = mcrypt_module_open ('rijndael-256', '', 'ofb', '');
|
|
||||||
$md5_key = md5 ($crypt_key);
|
|
||||||
$iv = jirafeau_crypt_create_iv ($md5_key, mcrypt_enc_get_iv_size ($m));
|
|
||||||
mcrypt_generic_init ($m, $md5_key, $iv);
|
|
||||||
$r = fopen (VAR_FILES . $p . $link['hash'], 'r');
|
|
||||||
$content = "";
|
|
||||||
while (!feof ($r)) {
|
|
||||||
$dec = mdecrypt_generic ($m, fread ($r, 1024));
|
|
||||||
$content .= $dec;
|
|
||||||
ob_flush ();
|
|
||||||
}
|
|
||||||
fclose ($r);
|
|
||||||
$zip->addFromString ($dirname."/".$dst_name, $content);
|
|
||||||
|
|
||||||
mcrypt_generic_deinit ($m);
|
|
||||||
mcrypt_module_close ($m);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$zip->addFile (VAR_FILES . $p . $link['hash'], $dirname."/".$dst_name);
|
|
||||||
}
|
|
||||||
$zip->close ();
|
|
||||||
|
|
||||||
|
|
||||||
if (!is_file ($tmpFileName.".zip"))
|
|
||||||
die ("can't retreive tmp");
|
|
||||||
|
|
||||||
header ("HTTP/1.0 200 OK");
|
|
||||||
header ("Content-Type: application/zip");
|
|
||||||
header ('Content-Disposition: filename="'.$dirname.'.zip"');
|
|
||||||
$r = fopen($tmpFileName.".zip", 'r');
|
|
||||||
while (!feof ($r)) {
|
|
||||||
print fread ($r, 1024);
|
|
||||||
ob_flush ();
|
|
||||||
}
|
|
||||||
fclose ($r);
|
|
||||||
|
|
||||||
unlink ($tmpFileName.".zip");
|
|
||||||
unlink ($tmpFileName);
|
|
288
src/bash/filter.sh
Normal file → Executable file
288
src/bash/filter.sh
Normal file → Executable file
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
##########################################################################
|
##########################################################################
|
||||||
# Copyright KAZ 2021 #
|
# Copyright KAZ 2021 #
|
||||||
# #
|
# #
|
||||||
@ -34,13 +34,20 @@
|
|||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
##########################################################################
|
##########################################################################
|
||||||
# - installer l' utilitaire apg pour génération de mot de passes
|
# - installer l'utilitaire apg pour génération de mot de passes
|
||||||
|
# - installer l'utilitaire dos2unix
|
||||||
# - le contenu de INSPECT_DIR doit être accessible en écriture pour le
|
# - le contenu de INSPECT_DIR doit être accessible en écriture pour le
|
||||||
# proriétaire du script
|
# proriétaire du script
|
||||||
# - shrinkEMail et jirafeau.sh doivent être accessible en execution pour
|
# - shrinkEMail et jirafeau.sh doivent être accessible en execution pour
|
||||||
# le roriétaire du script
|
# le roriétaire du script
|
||||||
|
# - il faut que root fasse avant :
|
||||||
|
# mkdir -p "${DIR_LOG}/pb/" ; chmod a+rwx "${DIR_LOG}/pb/"
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
|
DEFAULT_MODE="footer"
|
||||||
|
DEFAULT_PERIOD="month"
|
||||||
|
DEFAULT_TRACK=""
|
||||||
|
|
||||||
cd $(dirname $0)
|
cd $(dirname $0)
|
||||||
DOMAINNAME=$(cat domainname)
|
DOMAINNAME=$(cat domainname)
|
||||||
# Exit codes from <sysexits.h>
|
# Exit codes from <sysexits.h>
|
||||||
@ -48,35 +55,150 @@ EX_TEMPFAIL=75
|
|||||||
EX_UNAVAILABLE=69
|
EX_UNAVAILABLE=69
|
||||||
EX_TOO_LARGE=552
|
EX_TOO_LARGE=552
|
||||||
INSPECT_DIR=/var/spool/filter
|
INSPECT_DIR=/var/spool/filter
|
||||||
FIC_LOG=/var/log/mail/filter.log
|
DIR_LOG=/var/log/mail
|
||||||
|
FIC_LOG="${DIR_LOG}/filter.log"
|
||||||
|
TMP_LOG="$(mktemp)"
|
||||||
SENDMAIL="/usr/sbin/sendmail -G -i"
|
SENDMAIL="/usr/sbin/sendmail -G -i"
|
||||||
MAILS=/tmp/FILTER
|
MAILS=/tmp/FILTER
|
||||||
MAX_KEEP_IN_MAIL=24ki
|
MAX_KEEP_IN_MAIL=5ki
|
||||||
MAX_UPLOAD_SIZE=100Mi
|
MAX_UPLOAD_SIZE=1Gi
|
||||||
SHRINK_CMD=/home/filter/eMailShrinker
|
SHRINK_CMD=/home/filter/eMailShrinker
|
||||||
JIRAFEAU_CMD=/home/filter/jirafeauAPI
|
JIRAFEAU_CMD=/home/filter/jirafeauAPI
|
||||||
JIRAFEAU_URL=https://depot.${DOMAINNAME:-"kaz.bzh"}
|
JIRAFEAU_URL=https://depot.${DOMAINNAME:-"kaz.bzh"}
|
||||||
JIRAFEAU_LOCAL=http://depot
|
JIRAFEAU_LOCAL=http://depot
|
||||||
JIRAFEAU_TIME=month
|
|
||||||
MD5_CMD=/usr/bin/md5sum
|
MD5_CMD=/usr/bin/md5sum
|
||||||
DISCLAMER_CMD=altermime
|
DISCLAMER_CMD=altermime
|
||||||
MAX_FINAL_SIZE=204800 # 200ki
|
MAX_FINAL_SIZE=2097152 # 2Mi
|
||||||
|
ARCHIVE_TITLE="archive_content"
|
||||||
|
ARCHIVE_MIME="text/kaz_email_archive"
|
||||||
|
|
||||||
|
FILE_SKIP_DOMAINS="/tmp/docker-mailserver/file_domaines_non_depollues.txt"
|
||||||
|
#on enlève les commentaires et les lignes vides
|
||||||
|
SKIP_DOMAINS=`grep -Ev '^#|^[[:space:]]*$' $FILE_SKIP_DOMAINS`
|
||||||
|
|
||||||
|
KEEP_FAILED=true
|
||||||
|
DEBUG=true
|
||||||
|
|
||||||
#################### FONCTIONS ############################################
|
#################### FONCTIONS ############################################
|
||||||
|
BOLD='[1m'
|
||||||
|
RED='[0;31m'
|
||||||
|
GREEN='[0;32m'
|
||||||
|
YELLOW='[0;33m'
|
||||||
|
BLUE='[0;34m'
|
||||||
|
MAGENTA='[0;35m'
|
||||||
|
CYAN='[0;36m'
|
||||||
|
NC='[0m' # No Color
|
||||||
|
NL='
|
||||||
|
'
|
||||||
|
|
||||||
#--------------------- Fichier de LOG -------------------
|
#--------------------- Fichier de LOG -------------------
|
||||||
LOG_FIC() {
|
LOG_FIC () {
|
||||||
echo "$(date +%d-%m-%Y-%H-%M-%S) : $*" >> "${FIC_LOG}"
|
echo "${BLUE}$(date +%d-%m-%Y-%H-%M-%S)${NC} : $*" >> "${TMP_LOG}"
|
||||||
|
}
|
||||||
|
|
||||||
|
quitFilter () {
|
||||||
|
LOG_FIC "${GREEN}######################################## filter stop${NC}"
|
||||||
|
cat "${TMP_LOG}" >> "${FIC_LOG}"
|
||||||
|
rm -f "${TMP_LOG}"
|
||||||
|
exit $1
|
||||||
|
}
|
||||||
|
|
||||||
|
keepFailed () {
|
||||||
|
[ -z "${KEEP_FAILED}" ] && return
|
||||||
|
cp "$1" "${DIR_LOG}/pb/"
|
||||||
|
}
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# curl Jirafeau
|
||||||
|
curlJirafeauUpdate () {
|
||||||
|
# $1: periode
|
||||||
|
# $2: jirafeauItemRef
|
||||||
|
LOG_FIC " - ${CYAN}curl -X POST -d \"u=$1\" -d \"h=$2\" \"${JIRAFEAU_LOCAL}/a.php}\""
|
||||||
|
curl -X POST -d "u=$1" -d "h=$2" "${JIRAFEAU_LOCAL}/a.php"
|
||||||
|
}
|
||||||
|
|
||||||
|
curlJirafeauSend () {
|
||||||
|
# $1: periode
|
||||||
|
# $2: filename
|
||||||
|
# $3: content-type
|
||||||
|
# $4: name
|
||||||
|
# $5: password
|
||||||
|
|
||||||
|
type=$3
|
||||||
|
[ -z "${type}" ] && type="text/plain"
|
||||||
|
LOG_FIC " - curl -X POST -F \"time=$1\" -F \"key=$5\" -F \"file=@$2;type=${type};filename=\\\"$4\\\"\" \"${JIRAFEAU_LOCAL}/a.php\""
|
||||||
|
for num in {1..2}; do
|
||||||
|
OUTPUT=$(curl -X POST -F "time=$1" -F "key=$5" -F "file=@$2;type=${type};filename=\"$4\"" "${JIRAFEAU_LOCAL}/a.php")
|
||||||
|
read JIR_TOKEN <<< "${OUTPUT}"
|
||||||
|
case "${JIR_TOKEN}" in
|
||||||
|
"" | no | *Error* | \<* )
|
||||||
|
sleep 30
|
||||||
|
continue
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
break
|
||||||
|
done
|
||||||
|
echo "${OUTPUT}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Définir une fonction pour vérifier si le domaine d'un email est dans la liste SKIP_DOMAINS
|
||||||
|
function check_skip_domains() {
|
||||||
|
local SKIP_DOMAINS="$1"
|
||||||
|
local LIST_EMAILS="$2"
|
||||||
|
|
||||||
|
for email in $LIST_EMAILS; do
|
||||||
|
# Extraire le domaine de l'email (partie après le "@")
|
||||||
|
local domain="${email##*@}"
|
||||||
|
|
||||||
|
# Utiliser grep pour vérifier si le domaine est dans la liste des domaines à sauter
|
||||||
|
if echo "$SKIP_DOMAINS" | grep -q -w "$domain"; then
|
||||||
|
echo "yes"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Si aucun domaine n'a été trouvé, retourner "no"
|
||||||
|
echo "no"
|
||||||
}
|
}
|
||||||
|
|
||||||
#################### MAIN #################################################
|
#################### MAIN #################################################
|
||||||
LOG_FIC "------------------------------------------------------"
|
echo "${NL}${BLUE}$(date +%d-%m-%Y-%H-%M-%S)${NC} : ${GREEN}######################################## filter start (log in ${TMP_LOG})${NC}" >> "${FIC_LOG}"
|
||||||
LOG_FIC "--------------- debut de programme -------------------"
|
LOG_FIC "${GREEN}######################################## ${TMP_LOG} ${NC}"
|
||||||
|
|
||||||
|
if ! mkdir -p "${MAILS}"; then
|
||||||
|
LOG_FIC "${RED}Can't mkdir ${MAILS} ${NC}"
|
||||||
|
quitFilter "${EX_UNAVAILABLE}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
#$@ contient le sender et les destinataires
|
||||||
|
#format "-f sender -- dest1 [...dest(i)] "
|
||||||
|
LIST_EMAILS=$(echo $@)
|
||||||
|
#on nettoie
|
||||||
|
LIST_EMAILS=$(sed 's/-f//g' <<< $LIST_EMAILS)
|
||||||
|
LIST_EMAILS=$(sed 's/--//g' <<< $LIST_EMAILS)
|
||||||
|
|
||||||
mkdir -p "${MAILS}" || { LOG_FIC "impossible de creer ce dossier"; exit "${EX_UNAVAILABLE}"; }
|
|
||||||
MAIL_SOURCE=$(echo $@ | awk 'BEGIN{FS=" "} {print $2}')
|
MAIL_SOURCE=$(echo $@ | awk 'BEGIN{FS=" "} {print $2}')
|
||||||
DATE_TEMPS=$(date "+%Y-%m-%d-%H:%M:%S")
|
DATE_TEMPS=$(date "+%Y-%m-%d-%H:%M:%S")
|
||||||
REP_PIECE_JOINTE=$(echo "${MAILS}/${DATE_TEMPS}_${MAIL_SOURCE}_$$")
|
REP_PIECE_JOINTE="${MAILS}/${DATE_TEMPS}_${MAIL_SOURCE}_$$"
|
||||||
cd "${INSPECT_DIR}" || { echo "${INSPECT_DIR} does not exist"; exit "${EX_TEMPFAIL}"; }
|
|
||||||
|
MODE=$(curl "${JIRAFEAU_LOCAL}/a.php?m=${MAIL_SOURCE}" 2>/dev/null )
|
||||||
|
[[ "${MODE}" =~ ^(none|footer|attachment|both)$ ]] || MODE="${DEFAULT_MODE}"
|
||||||
|
TRACK=$(curl "${JIRAFEAU_LOCAL}/a.php?r=${MAIL_SOURCE}" 2>/dev/null )
|
||||||
|
[[ "${TRACK}" =~ ^(|0|1|false|true|FALSE|TRUE|on|off)$ ]] || TRACK="${DEFAULT_TRACK}"
|
||||||
|
PERIOD=$(curl "${JIRAFEAU_LOCAL}/a.php?p=${MAIL_SOURCE}" 2>/dev/null )
|
||||||
|
[[ "${PERIOD}" =~ ^(minute|hour|day|week|month|quarter)$ ]] || PERIOD="${DEFAULT_PERIOD}"
|
||||||
|
|
||||||
|
LOG_FIC "${NL}" \
|
||||||
|
" MAIL_SOURCE : ${YELLOW}${MAIL_SOURCE}${NC}${NL}" \
|
||||||
|
" DATE_TEMPS : ${YELLOW}${DATE_TEMPS=}${NC}${NL}" \
|
||||||
|
" MODE : ${YELLOW}${MODE}${NC}${NL}" \
|
||||||
|
" TRACK : ${YELLOW}${TRACK}${NC}${NL}" \
|
||||||
|
" PERIOD : ${YELLOW}${PERIOD}${NC}${NL}"
|
||||||
|
|
||||||
|
if ! cd "${INSPECT_DIR}"; then
|
||||||
|
echo "${INSPECT_DIR} does not exist"
|
||||||
|
quitFilter "${EX_TEMPFAIL}"
|
||||||
|
fi
|
||||||
|
|
||||||
# lien renvoyé par le téléverssement
|
# lien renvoyé par le téléverssement
|
||||||
ONE_LINK="${REP_PIECE_JOINTE}/one.txt"
|
ONE_LINK="${REP_PIECE_JOINTE}/one.txt"
|
||||||
@ -84,129 +206,159 @@ ONE_LINK="${REP_PIECE_JOINTE}/one.txt"
|
|||||||
OLD_LINKS="${REP_PIECE_JOINTE}/url-to-refresh.txt"
|
OLD_LINKS="${REP_PIECE_JOINTE}/url-to-refresh.txt"
|
||||||
# contenu de l'archive
|
# contenu de l'archive
|
||||||
ARCHIVE_CONTENT="${REP_PIECE_JOINTE}/archive-content.txt"
|
ARCHIVE_CONTENT="${REP_PIECE_JOINTE}/archive-content.txt"
|
||||||
|
# create if error
|
||||||
|
JIRAFEAU_ERROR="${REP_PIECE_JOINTE}/jirafeau-error.txt"
|
||||||
|
|
||||||
# Clean up when done or when aborting.
|
# Clean up when done or when aborting.
|
||||||
trap "rm -rf in.$$ in.$$.altered ${REP_PIECE_JOINTE}" 0 1 2 3 15
|
[ -z "${DEBUG}" ] && trap "cd ${INSPECT_DIR}; rm -rf in.$$ in.$$.altered ${REP_PIECE_JOINTE}" 0 1 2 3 15
|
||||||
|
|
||||||
cat > "in.$$" || { LOG_FIC "Cannot save mail to file"; exit "${EX_TEMPFAIL}"; }
|
if ! cat > "${INSPECT_DIR}/in.$$"; then
|
||||||
# XXX trace
|
LOG_FIC "${RED}Cannot save mail to file${NC}"
|
||||||
# cp "${INSPECT_DIR}/in.$$" "${INSPECT_DIR}/in.$$.bak"
|
quitFilter "${EX_TEMPFAIL}"
|
||||||
|
fi
|
||||||
|
dos2unix "${INSPECT_DIR}/in.$$" 2> /dev/null
|
||||||
|
|
||||||
|
LOG_FIC "${NL}" \
|
||||||
|
" size: ${YELLOW}$(wc -c < "${INSPECT_DIR}/in.$$")${NC}"
|
||||||
|
[ -z "${DEBUG}" ] || (cp "${INSPECT_DIR}/in.$$" "${DIR_LOG}/pb/in.$$.orig")
|
||||||
|
|
||||||
mkdir -p "${REP_PIECE_JOINTE}/"
|
mkdir -p "${REP_PIECE_JOINTE}/"
|
||||||
>"${OLD_LINKS}"
|
>"${OLD_LINKS}"
|
||||||
>"${ARCHIVE_CONTENT}"
|
>"${ARCHIVE_CONTENT}"
|
||||||
|
|
||||||
# Etape de rafraichissement des anciens fichiers inclus
|
if [ "${MODE}" = "none"]; then
|
||||||
cat > "${ARCHIVE_CONTENT}" <<EOF
|
LOG_FIC " - ${GREEN}send without change (MODE=none)${NC}"
|
||||||
src: ${MAIL_SOURCE}
|
${SENDMAIL} "$@" < "${INSPECT_DIR}/in.$$"
|
||||||
time: ${DATE_TEMPS}
|
quitFilter 0
|
||||||
EOF
|
fi
|
||||||
LOG_FIC "${SHRINK_CMD} -u \"${INSPECT_DIR}/in.$$\" 2>> \"${FIC_LOG}\" > \"${OLD_LINKS}\""
|
|
||||||
"${SHRINK_CMD}" -u "${INSPECT_DIR}/in.$$" 2>> "${FIC_LOG}" > "${OLD_LINKS}"
|
|
||||||
|
|
||||||
cat "${OLD_LINKS}" | grep "${JIRAFEAU_URL}" | while read REMOTE_LINK
|
|
||||||
do
|
if [ "$(check_skip_domains "$SKIP_DOMAINS" "$LIST_EMAILS")" = "yes" ]; then
|
||||||
|
LOG_FIC " - ${GREEN}send without change (skip domain)${NC}"
|
||||||
|
${SENDMAIL} "$@" < "${INSPECT_DIR}/in.$$"
|
||||||
|
quitFilter 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Etape de rafraichissement des anciens fichiers inclus
|
||||||
|
echo "time: ${DATE_TEMPS}${NL}id: $(date +%s)" > "${ARCHIVE_CONTENT}"
|
||||||
|
[ -n "${TRACK}" ] && echo "sender: ${MAIL_SOURCE}" >> "${ARCHIVE_CONTENT}"
|
||||||
|
|
||||||
|
LOG_FIC "${CYAN}${SHRINK_CMD} -u \"${INSPECT_DIR}/in.$$\" 2>> \"${TMP_LOG}\" > \"${OLD_LINKS}\"${NC}"
|
||||||
|
"${SHRINK_CMD}" -u "${INSPECT_DIR}/in.$$" 2>> "${TMP_LOG}" > "${OLD_LINKS}"
|
||||||
|
|
||||||
|
cat "${OLD_LINKS}" | grep "${JIRAFEAU_URL}" | while read REMOTE_LINK; do
|
||||||
REMOTE_REF=$(echo "${REMOTE_LINK}" | sed -e 's/.*h=\([^&]*\).*/\1/' -e 's/.*http.*//')
|
REMOTE_REF=$(echo "${REMOTE_LINK}" | sed -e 's/.*h=\([^&]*\).*/\1/' -e 's/.*http.*//')
|
||||||
[ -z "${REMOTE_REF}" ] && continue
|
[ -z "${REMOTE_REF}" ] && continue
|
||||||
REMOTE_KEY=$(echo "${REMOTE_LINK}" | grep "k=" | sed 's%.*k=\([^&]*\).*%\1%')
|
REMOTE_KEY=$(echo "${REMOTE_LINK}" | grep "k=" | sed 's%.*k=\([^&]*\).*%\1%')
|
||||||
# update periode for download
|
# update periode for download
|
||||||
LOG_FIC " - \"${JIRAFEAU_CMD}\" -f \"${JIRAFEAU_LOCAL}\" -t \"${JIRAFEAU_TIME}\" update \"${REMOTE_REF}\" 2>&1 >> \"${FIC_LOG}\""
|
curlJirafeauUpdate "${PERIOD}" "${REMOTE_REF}" 2>&1 >> "${TMP_LOG}"
|
||||||
"${JIRAFEAU_CMD}" -f "${JIRAFEAU_LOCAL}" -t "${JIRAFEAU_TIME}" update "${REMOTE_REF}" 2>&1 >> "${FIC_LOG}"
|
|
||||||
echo "old: ${REMOTE_REF} ${REMOTE_KEY}" >> "${ARCHIVE_CONTENT}"
|
echo "old: ${REMOTE_REF} ${REMOTE_KEY}" >> "${ARCHIVE_CONTENT}"
|
||||||
done
|
done
|
||||||
LOG_FIC " - archive starts with: $(cat ${ARCHIVE_CONTENT})"
|
LOG_FIC " - archive starts with: ${NL}${YELLOW}$(cat ${ARCHIVE_CONTENT})${NC}"
|
||||||
|
|
||||||
# Etape extraction des pieces jointes
|
# Etape extraction des pieces jointes
|
||||||
LOG_FIC "${SHRINK_CMD} -s ${MAX_KEEP_IN_MAIL} -d ${REP_PIECE_JOINTE} ${INSPECT_DIR}/in.$$"
|
LOG_FIC "${CYAN}${SHRINK_CMD} -s \"${MAX_KEEP_IN_MAIL}\" -d \"${REP_PIECE_JOINTE}\" \"${INSPECT_DIR}/in.$$\"${NC}"
|
||||||
"${SHRINK_CMD}" -s "${MAX_KEEP_IN_MAIL}" -d "${REP_PIECE_JOINTE}" "${INSPECT_DIR}/in.$$" 2>> "${FIC_LOG}" | {
|
"${SHRINK_CMD}" -s "${MAX_KEEP_IN_MAIL}" -d "${REP_PIECE_JOINTE}" "${INSPECT_DIR}/in.$$" 2>> "${TMP_LOG}" | {
|
||||||
while read ATTACH_TMP_NAME
|
while read ATTACH_TMP_NAME; do
|
||||||
do
|
if [ -d "${ATTACH_TMP_NAME}" ]; then
|
||||||
if [ -d "${ATTACH_TMP_NAME}" ]
|
|
||||||
then
|
|
||||||
ATTACH_MEDIA="${ATTACH_TMP_NAME}/media"
|
ATTACH_MEDIA="${ATTACH_TMP_NAME}/media"
|
||||||
ATTACH_NAME=$(grep "^Name: " "${ATTACH_TMP_NAME}/meta" | cut -c 7- )
|
ATTACH_NAME=$(grep "^Name: " "${ATTACH_TMP_NAME}/meta" | cut -c 7- )
|
||||||
ATTACH_CONTENT_TYPE=$(grep "^Content-Type: " "${ATTACH_TMP_NAME}/meta" | cut -c 15- )
|
ATTACH_CONTENT_TYPE=$(grep "^Content-Type: " "${ATTACH_TMP_NAME}/meta" | cut -c 15- )
|
||||||
else
|
else
|
||||||
|
LOG_FIC " - ${RED}no ATTACH_TMP_NAME (${ATTACH_TMP_NAME}) ${NC}"
|
||||||
# XXX error
|
# XXX error
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
# Etape de televersement des pieces jointes
|
# Etape de televersement des pieces jointes
|
||||||
PASSWORD=$(apg -n 1 -m 12)
|
PASSWORD=$(apg -n 1 -m 12 -M cln)
|
||||||
PASSWORD_MD5=$(echo -n ${PASSWORD} | ${MD5_CMD} | cut -d \ -f 1)
|
PASSWORD_MD5=$(echo -n ${PASSWORD} | ${MD5_CMD} | cut -d \ -f 1)
|
||||||
LOG_FIC " - \"${JIRAFEAU_CMD}\" -f \"${JIRAFEAU_LOCAL}\" -s \"${MAX_UPLOAD_SIZE}\" -c \"${ATTACH_CONTENT_TYPE}\" -n \"${ATTACH_NAME}\" send \"${ATTACH_MEDIA}\" \"${PASSWORD}\" 2>> \"${FIC_LOG}\" > \"${ONE_LINK}\""
|
curlJirafeauSend "${PERIOD}" "${ATTACH_MEDIA}" "${ATTACH_CONTENT_TYPE}" "${ATTACH_NAME}" "${PASSWORD}" 2>> "${TMP_LOG}" > "${ONE_LINK}"
|
||||||
"${JIRAFEAU_CMD}" -f "${JIRAFEAU_LOCAL}" -s "${MAX_UPLOAD_SIZE}" -c "${ATTACH_CONTENT_TYPE}" -n "${ATTACH_NAME}" send "${ATTACH_MEDIA}" "${PASSWORD}" 2>> "${FIC_LOG}" > "${ONE_LINK}"
|
|
||||||
cat "${ONE_LINK}" | {
|
cat "${ONE_LINK}" | {
|
||||||
read JIR_TOKEN
|
read JIR_TOKEN
|
||||||
read JIR_CODE
|
read JIR_CODE
|
||||||
LOG_FIC " - Jirafeau retourne ${JIR_TOKEN} et ${JIR_CODE}"
|
LOG_FIC " - return code ${YELLOW}${JIR_TOKEN}${NC} / ${YELLOW}${JIR_CODE}${NC}"
|
||||||
case "${JIR_TOKEN}" in
|
case "${JIR_TOKEN}" in
|
||||||
"" | no | *Error* | \<* )
|
"" | no | *Error* | \<* )
|
||||||
LOG_FIC " - impossible de televerser ${ATTACH_TMP_FILE} (${JIR_TOKEN}), il ne sera pas remplace dans le message"
|
LOG_FIC " - ${RED}Can't upload <${ATTACH_NAME}> <${ATTACH_CONTENT_TYPE}> <$(wc -c < "${ATTACH_MEDIA}")> (${JIR_TOKEN}) <in.$$.bak>. It will be not change in e-mail.${NC}"
|
||||||
echo "new:"
|
echo "url:"
|
||||||
|
keepFailed "${INSPECT_DIR}/in.$$"
|
||||||
|
echo "UPLOAD_FAIL" >> "${JIRAFEAU_ERROR}"
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
LOG_FIC " - substitution par ${JIRAFEAU_URL}/f.php?d=1&h=${JIR_TOKEN}&k=${PASSWORD_MD5}"
|
LOG_FIC " - change by link ${YELLOW}${JIRAFEAU_URL}/f.php?d=0&h=${JIR_TOKEN}&k=${PASSWORD_MD5}${NC}"
|
||||||
echo "url: ${JIRAFEAU_URL}/f.php?d=1&h=${JIR_TOKEN}&k=${PASSWORD_MD5}"
|
echo "url: ${JIRAFEAU_URL}/f.php?d=0&h=${JIR_TOKEN}&k=${PASSWORD_MD5}"
|
||||||
echo "new: ${JIR_TOKEN} ${PASSWORD_MD5}" >> "${ARCHIVE_CONTENT}"
|
echo "new: ${JIR_TOKEN} ${PASSWORD_MD5}" >> "${ARCHIVE_CONTENT}"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
LOG_FIC " - supprimer l'extraction ${ATTACH_TMP_FILE}"
|
|
||||||
rm -f "${ATTACH_TMP_FILE}"
|
|
||||||
done
|
done
|
||||||
# Création de l'archive
|
# Création de l'archive
|
||||||
if [ "$(wc -l < "${ARCHIVE_CONTENT}")" -ge 4 ]; then
|
NB_ATTACH=$(grep -e "^old: " -e "^new: " "${ARCHIVE_CONTENT}" | wc -l)
|
||||||
PASSWORD=$(apg -n 1 -m 12)
|
if [ \( -n "${TRACK}" -a "${NB_ATTACH}" -gt 0 \) -o "${NB_ATTACH}" -gt 1 ]; then
|
||||||
|
PASSWORD=$(apg -n 1 -m 12 -M cln)
|
||||||
PASSWORD_MD5=$(echo -n ${PASSWORD} | ${MD5_CMD} | cut -d \ -f 1)
|
PASSWORD_MD5=$(echo -n ${PASSWORD} | ${MD5_CMD} | cut -d \ -f 1)
|
||||||
LOG_FIC " - \"${JIRAFEAU_CMD}\" -f \"${JIRAFEAU_LOCAL}\" -s \"${MAX_UPLOAD_SIZE}\" -c \"text/plain\" -n \"archive_content\" send \"${ARCHIVE_CONTENT}\" \"${PASSWORD}\" 2>> \"${FIC_LOG}\" > \"${ONE_LINK}\""
|
LOG_FIC " - ${MAGENTA}upload archive${NC}"
|
||||||
"${JIRAFEAU_CMD}" -f "${JIRAFEAU_LOCAL}" -s "${MAX_UPLOAD_SIZE}" -c "text/plain" -n "archive_content" send "${ARCHIVE_CONTENT}" "${PASSWORD}" 2>> "${FIC_LOG}" > "${ONE_LINK}"
|
|
||||||
|
curlJirafeauSend "${PERIOD}" "${ARCHIVE_CONTENT}" "${ARCHIVE_MIME}" "${ARCHIVE_TITLE}" "${PASSWORD}" 2>> "${TMP_LOG}" > "${ONE_LINK}"
|
||||||
|
fi
|
||||||
|
LOG_FIC " - final archive content: ${NL}${YELLOW}$(cat ${ARCHIVE_CONTENT})${NC}"
|
||||||
|
if [ "${NB_ATTACH}" -gt 1 ]; then
|
||||||
cat "${ONE_LINK}" | {
|
cat "${ONE_LINK}" | {
|
||||||
read JIR_TOKEN
|
read JIR_TOKEN
|
||||||
read JIR_CODE
|
read JIR_CODE
|
||||||
LOG_FIC " - Jirafeau retourne ${JIR_TOKEN} et ${JIR_CODE}"
|
LOG_FIC " - return code ${YELLOW}${JIR_TOKEN}${NC} / ${YELLOW}${JIR_CODE}${NC}"
|
||||||
case "${JIR_TOKEN}" in
|
case "${JIR_TOKEN}" in
|
||||||
"" | no | *Error* | \<* )
|
"" | no | *Error* | \<* )
|
||||||
LOG_FIC " - impossible de televerser l'archive (${JIR_TOKEN}), il ne sera pas remplace dans le message"
|
LOG_FIC " - ${RED}can't upload archive (${JIR_TOKEN}) <in.$$.bak>, substitution couldn't be done${NC}"
|
||||||
echo "arch: bad"
|
echo "arch: bad"
|
||||||
|
keepFailed "${INSPECT_DIR}/in.$$"
|
||||||
|
echo "ARCHIVE_FAIL" >> "${JIRAFEAU_ERROR}"
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
LOG_FIC " - ajoute de l'archive ${JIRAFEAU_URL}/a.php?g=${JIR_TOKEN}~${PASSWORD_MD5}"
|
LOG_FIC " - add archive ${YELLOW}${JIRAFEAU_URL}/a.php?g=${JIR_TOKEN}~${PASSWORD_MD5}${NC}"
|
||||||
echo "arch: ${JIRAFEAU_URL}/a.php?g=${JIR_TOKEN}~${PASSWORD_MD5}"
|
echo "arch: ${JIRAFEAU_URL}/a.php?g=${JIR_TOKEN}~${PASSWORD_MD5}"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
LOG_FIC " - pas d'archive (moins de 2 PJ)"
|
LOG_FIC " - no archive (less than 2 attach file)"
|
||||||
echo "arch: none"
|
echo "arch: none"
|
||||||
fi
|
fi
|
||||||
# Etape de substitution
|
# Etape de substitution
|
||||||
LOG_FIC "${SHRINK_CMD} -s \"${MAX_KEEP_IN_MAIL}\" \"${INSPECT_DIR}/in.$$\" \"${INSPECT_DIR}/in.$$.altered\" 2>> \"${FIC_LOG}\""
|
LOG_FIC "${CYAN}${SHRINK_CMD} -m \"${MODE}\" -s \"${MAX_KEEP_IN_MAIL}\" \"${INSPECT_DIR}/in.$$\" \"${INSPECT_DIR}/in.$$.altered\" 2>> \"${TMP_LOG}\"${NC}"
|
||||||
} | "${SHRINK_CMD}" -s "${MAX_KEEP_IN_MAIL}" "${INSPECT_DIR}/in.$$" "${INSPECT_DIR}/in.$$.altered" 2>> "${FIC_LOG}"
|
} | "${SHRINK_CMD}" -m "${MODE}" -s "${MAX_KEEP_IN_MAIL}" "${INSPECT_DIR}/in.$$" "${INSPECT_DIR}/in.$$.altered" 2>> "${TMP_LOG}"
|
||||||
|
|
||||||
# XXX trace
|
[ -z "${DEBUG}" ] || (cp "${INSPECT_DIR}/in.$$.altered" "${DIR_LOG}/pb/in.$$.altered")
|
||||||
# cp "${INSPECT_DIR}/in.$$" "${INSPECT_DIR}/in.$$.altered" /var/mail/tmp/
|
|
||||||
|
if [ -s "${JIRAFEAU_ERROR}" ]; then
|
||||||
|
LOG_FIC " - ${RED}upload fail${NC}"
|
||||||
|
quitFilter "${EX_TEMPFAIL}"
|
||||||
|
fi
|
||||||
|
|
||||||
# Etape choix de modification du message d'origine
|
# Etape choix de modification du message d'origine
|
||||||
if [ "$(wc -l < "${ARCHIVE_CONTENT}")" -ge 3 ]; then
|
if [ "$(wc -l < "${ARCHIVE_CONTENT}")" -ge 3 ]; then
|
||||||
# verification de taille finale
|
# verification de taille finale
|
||||||
actualSize=$(wc -c < "${INSPECT_DIR}/in.$$.altered")
|
actualSize=$(wc -c < "${INSPECT_DIR}/in.$$.altered")
|
||||||
if [ ${actualSize} -ge $MAX_FINAL_SIZE ]; then
|
if [ "${actualSize}" -ge "${MAX_FINAL_SIZE}" ]; then
|
||||||
LOG_FIC " - message trop gros apres regime ${INSPECT_DIR}/in.$$.altered (${actualSize})"
|
LOG_FIC " - ${RED}too big even after diet ${INSPECT_DIR}/in.$$.altered (${actualSize})${NC}"
|
||||||
exit "${EX_TOO_LARGE}";
|
keepFailed "${INSPECT_DIR}/in.$$"
|
||||||
|
quitFilter "${EX_TOO_LARGE}"
|
||||||
fi
|
fi
|
||||||
LOG_FIC " - envoi de la commande : ${SENDMAIL} $@ ${INSPECT_DIR}/in.$$.altered"
|
LOG_FIC " - ${GREEN}send with : ${SENDMAIL} $@ ${INSPECT_DIR}/in.$$.altered ${NC}"
|
||||||
${SENDMAIL} "$@" < "${INSPECT_DIR}/in.$$.altered"
|
${SENDMAIL} "$@" < "${INSPECT_DIR}/in.$$.altered"
|
||||||
else
|
else
|
||||||
# verification de taille finale
|
# verification de taille finale
|
||||||
actualSize=$(wc -c < "${INSPECT_DIR}/in.$$")
|
actualSize=$(wc -c < "${INSPECT_DIR}/in.$$")
|
||||||
if [ ${actualSize} -ge $MAX_FINAL_SIZE ]; then
|
if [ "${actualSize}" -ge "${MAX_FINAL_SIZE}" ]; then
|
||||||
LOG_FIC " - message trop gros sans regime ${INSPECT_DIR}/in.$$ (${actualSize})"
|
LOG_FIC " - ${RED}too big without diet ${INSPECT_DIR}/in.$$ (${actualSize}) ${NC}"
|
||||||
exit "${EX_TOO_LARGE}";
|
keepFailed "${INSPECT_DIR}/in.$$"
|
||||||
|
quitFilter "${EX_TOO_LARGE}"
|
||||||
fi
|
fi
|
||||||
LOG_FIC " - pas de piece jointe"
|
LOG_FIC " - ${GREEN}send without attach file${NC}"
|
||||||
${SENDMAIL} "$@" < "in.$$"
|
${SENDMAIL} "$@" < "${INSPECT_DIR}/in.$$"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit 0
|
quitFilter 0
|
||||||
|
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
|
232
src/bash/filterTest.sh
Executable file
232
src/bash/filterTest.sh
Executable file
@ -0,0 +1,232 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
##########################################################################
|
||||||
|
# Copyright KAZ 2021 #
|
||||||
|
# #
|
||||||
|
# contact (at) kaz.bzh #
|
||||||
|
# #
|
||||||
|
# This software is a filter to shrink email by attachment extraction. #
|
||||||
|
# #
|
||||||
|
# This software is governed by the CeCILL-B license under French law and #
|
||||||
|
# abiding by the rules of distribution of free software. You can use, #
|
||||||
|
# modify and/or redistribute the software under the terms of the #
|
||||||
|
# CeCILL-B license as circulated by CEA, CNRS and INRIA at the following #
|
||||||
|
# URL "http://www.cecill.info". #
|
||||||
|
# #
|
||||||
|
# As a counterpart to the access to the source code and rights to copy, #
|
||||||
|
# modify and redistribute granted by the license, users are provided #
|
||||||
|
# only with a limited warranty and the software's author, the holder of #
|
||||||
|
# the economic rights, and the successive licensors have only limited #
|
||||||
|
# liability. #
|
||||||
|
# #
|
||||||
|
# In this respect, the user's attention is drawn to the risks associated #
|
||||||
|
# with loading, using, modifying and/or developing or reproducing the #
|
||||||
|
# software by the user in light of its specific status of free software, #
|
||||||
|
# that may mean that it is complicated to manipulate, and that also #
|
||||||
|
# therefore means that it is reserved for developers and experienced #
|
||||||
|
# professionals having in-depth computer knowledge. Users are therefore #
|
||||||
|
# encouraged to load and test the software's suitability as regards #
|
||||||
|
# their requirements in conditions enabling the security of their #
|
||||||
|
# systems and/or data to be ensured and, more generally, to use and #
|
||||||
|
# operate it in the same conditions as regards security. #
|
||||||
|
# #
|
||||||
|
# The fact that you are presently reading this means that you have had #
|
||||||
|
# knowledge of the CeCILL-B license and that you accept its terms. #
|
||||||
|
##########################################################################
|
||||||
|
|
||||||
|
PRG=$(basename $0)
|
||||||
|
|
||||||
|
ATTACH_MODE="FOOTER"
|
||||||
|
|
||||||
|
BOLD='[1m'
|
||||||
|
RED='[0;31m'
|
||||||
|
GREEN='[0;32m'
|
||||||
|
YELLOW='[0;33m'
|
||||||
|
BLUE='[0;34m'
|
||||||
|
MAGENTA='[0;35m'
|
||||||
|
CYAN='[0;36m'
|
||||||
|
NC='[0m' # No Color
|
||||||
|
NL='
|
||||||
|
'
|
||||||
|
|
||||||
|
TTY=$(tty)
|
||||||
|
########################################
|
||||||
|
LOG () {
|
||||||
|
echo "$1" >> "${TTY}"
|
||||||
|
}
|
||||||
|
|
||||||
|
usage () {
|
||||||
|
echo "Usage: ${PRG} [-h|-v|-g] [-m {NONE|FOOTER|ATTACHMENT|BOTH}] mbox"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
while : ; do
|
||||||
|
case "$1" in
|
||||||
|
-h*) usage;;
|
||||||
|
-v*) "${eMailShrinker}" -v; exit;;
|
||||||
|
-g) DEBUG="-g"; shift;;
|
||||||
|
-m) shift; ATTACH_MODE="$1"; shift;;
|
||||||
|
*) break;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
case "${ATTACH_MODE}" in
|
||||||
|
""|NONE|FOOTER|ATTACHMENT|BOTH);;
|
||||||
|
*) usage;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
[ -z "${ATTACH_MODE}" ] || ATTACH_MODE="-m ${ATTACH_MODE}"
|
||||||
|
|
||||||
|
[ "$#" -eq 1 ] || usage
|
||||||
|
mbox=$(realpath "$1")
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# recherche des binaires
|
||||||
|
cd $(dirname $0)
|
||||||
|
eMailShrinker="$(realpath "./eMailShrinker")"
|
||||||
|
[ -x "${eMailShrinker}" ] || eMailShrinker="$(realpath "../../build/out/eMailShrinker")"
|
||||||
|
[ -x "${eMailShrinker}" ] || ( echo "${RED}eMailShrinker not found${NC}" ; exit)
|
||||||
|
|
||||||
|
########################################
|
||||||
|
dos2unix "${mbox}"
|
||||||
|
DOMAINNAME="$(cat domainname)"
|
||||||
|
JIRAFEAU_URL="https://depot.${DOMAINNAME}"
|
||||||
|
JIRAFEAU_LOCAL="${JIRAFEAU_URL}"
|
||||||
|
|
||||||
|
TMP_DIR="$(mktemp)"
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# curl Jirafeau
|
||||||
|
curlJirafeauUpdate () {
|
||||||
|
# $1: periode
|
||||||
|
# $2: jirafeauItemRef
|
||||||
|
|
||||||
|
curl -X POST -d "u=$1" -d "h=$2" "${JIRAFEAU_LOCAL}/a.php"
|
||||||
|
#"${jirafeauAPI}" -f "${JIRAFEAU_LOCAL}" -t "$1" update "$2"
|
||||||
|
}
|
||||||
|
|
||||||
|
curlJirafeauSend () {
|
||||||
|
# $1: periode
|
||||||
|
# $2: filename
|
||||||
|
# $3: content-type
|
||||||
|
# $4: name
|
||||||
|
# $5: password
|
||||||
|
|
||||||
|
type=$3
|
||||||
|
[ -z "${type}" ] && type="text/plain"
|
||||||
|
LOG "curl -X POST -F \"time=$1\" -F \"key=$5\" -F \"file=@$2;type=${type};filename=\\\"$4\\\"\" \"${JIRAFEAU_LOCAL}/a.php\""
|
||||||
|
curl -X POST -F "time=$1" -F "key=$5" -F "file=@$2;type=${type};filename=\"$4\"" "${JIRAFEAU_LOCAL}/a.php" || exit 1
|
||||||
|
#"${jirafeauAPI}" -f "${JIRAFEAU_LOCAL}" -t "$1" -s "1Gi" -c "${type}" -n "$4" send "$2" "$5"
|
||||||
|
}
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# nettoyage
|
||||||
|
rm -f "${TMP_DIR}" ; mkdir -p "${TMP_DIR}"
|
||||||
|
rm -fr "${TMP_DIR}/PJ-name.txt" "${TMP_DIR}/PJ-Keys.txt" "${TMP_DIR}/PJ" "${TMP_DIR}/archive-content.txt" "${TMP_DIR}/url-to-refresh.txt" "${TMP_DIR}/new-mbox"
|
||||||
|
|
||||||
|
echo -e "time: $(date "+%Y-%m-%d-%H:%M:%S")\nid: $(date +%s)" > "${TMP_DIR}/archive-content.txt"
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# affichage de la structure de départ
|
||||||
|
LOG " - ${BLUE}mbox: ${mbox}${NC}"
|
||||||
|
"${eMailShrinker}" -l "${mbox}"
|
||||||
|
LOG
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# recherche des prolongations des délais de grace
|
||||||
|
"${eMailShrinker}" ${DEBUG} -u "${mbox}" > "${TMP_DIR}/url-to-refresh.txt" 2>> "${TTY}"
|
||||||
|
cat "${TMP_DIR}/url-to-refresh.txt" | grep "${JIRAFEAU_URL}" | while read REMOTE_LINK; do
|
||||||
|
REMOTE_REF=$(echo "${REMOTE_LINK}" | sed -e 's/.*h=\([^&]*\).*/\1/' -e 's/.*http.*//')
|
||||||
|
[ -z "${REMOTE_REF}" ] && continue
|
||||||
|
LOG " - ${BLUE}update ${REMOTE_REF}${NC}"
|
||||||
|
curlJirafeauUpdate "month" "${REMOTE_REF}" 2>> "${TTY}"
|
||||||
|
LOG
|
||||||
|
echo "old: ${REMOTE_REF} ${REMOTE_KEY}" >> "${TMP_DIR}/archive-content.txt"
|
||||||
|
done
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# extraction des pièces jointes
|
||||||
|
"${eMailShrinker}" ${DEBUG} -s "5ki" -d "${TMP_DIR}/PJ" "${mbox}" > "${TMP_DIR}/PJ-name.txt" || exit 1
|
||||||
|
|
||||||
|
LOG " - ${BLUE}PJ-name: ${NC}"
|
||||||
|
cat "${TMP_DIR}/PJ-name.txt"
|
||||||
|
LOG
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# dépot des extractions dans jirafeau et récupération des codes
|
||||||
|
cat "${TMP_DIR}/PJ-name.txt" | {
|
||||||
|
while read ATTACH_TMP_NAME; do
|
||||||
|
LOG " - ${BLUE}find ATTACH_TMP_NAME: (${ATTACH_TMP_NAME}) ${NC}"
|
||||||
|
if [ -d "${ATTACH_TMP_NAME}" ]; then
|
||||||
|
ATTACH_MEDIA="${ATTACH_TMP_NAME}/media"
|
||||||
|
ATTACH_NAME=$(grep "^Name: " "${ATTACH_TMP_NAME}/meta" | cut -c 7- )
|
||||||
|
ATTACH_CONTENT_TYPE=$(grep "^Content-Type: " "${ATTACH_TMP_NAME}/meta" | cut -c 15- )
|
||||||
|
else
|
||||||
|
LOG " - ${RED}no ATTACH_TMP_NAME: ${ATTACH_TMP_NAME}${NC}"
|
||||||
|
# XXX error
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
LOG " - ${BLUE}find ${ATTACH_NAME} / (${ATTACH_CONTENT_TYPE}) / ${ATTACH_MEDIA} ${NC}"
|
||||||
|
PASSWORD=$(apg -n 1 -m 12 -M cln)
|
||||||
|
PASSWORD_MD5=$(echo -n ${PASSWORD} | ${MD5_CMD} | cut -d \ -f 1)
|
||||||
|
curlJirafeauSend "month" "${ATTACH_MEDIA}" "${ATTACH_CONTENT_TYPE}" "${ATTACH_NAME}" "${PASSWORD}" 2>> "${TTY}" > "${TMP_DIR}/one.txt"
|
||||||
|
|
||||||
|
cat "${TMP_DIR}/one.txt" | {
|
||||||
|
read JIR_TOKEN
|
||||||
|
read JIR_CODE
|
||||||
|
case "${JIR_TOKEN}" in
|
||||||
|
"" | no | *Error* | \<* )
|
||||||
|
LOG " - ${RED}can't upload ${ATTACH_MEDIA} <${JIR_TOKEN}> <${JIR_CODE}>${NC}"
|
||||||
|
cat "${TMP_DIR}/one.txt" >> "${TTY}"
|
||||||
|
echo "url:"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
LOG " - ${GREEN} upload ${ATTACH_MEDIA}${NC}"
|
||||||
|
echo "url: ${JIRAFEAU_URL}/f.php?d=1&h=${JIR_TOKEN}&k=${PASSWORD_MD5}"
|
||||||
|
echo "new: ${JIR_TOKEN} ${PASSWORD_MD5}" >> "${TMP_DIR}/archive-content.txt"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
done
|
||||||
|
NB_ATTACH=$(grep -e "^old: " -e "^new: " "${TMP_DIR}/archive-content.txt" | wc -l)
|
||||||
|
if [ "${NB_ATTACH}" -gt 1 ]; then
|
||||||
|
PASSWORD=$(apg -n 1 -m 12 -M cln)
|
||||||
|
PASSWORD_MD5=$(echo -n ${PASSWORD} | ${MD5_CMD} | cut -d \ -f 1)
|
||||||
|
curlJirafeauSend "month" "${TMP_DIR}/archive-content.txt" "text/kaz_email_archive" "archive_content" "${PASSWORD}" 2>> "${TTY}" > "${TMP_DIR}/one.txt" || exit 1
|
||||||
|
cat "${TMP_DIR}/one.txt" | {
|
||||||
|
read JIR_TOKEN
|
||||||
|
read JIR_CODE
|
||||||
|
case "${JIR_TOKEN}" in
|
||||||
|
"" | no | *Error* | \<* )
|
||||||
|
LOG " - ${RED}can't upload ${TMP_DIR}/archive-content.txt${NC}"
|
||||||
|
echo "arch: bad"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
LOG " - ${GREEN} upload archive-content.txt${NC}"
|
||||||
|
echo "arch: ${JIRAFEAU_URL}/a.php?g=${JIR_TOKEN}~${PASSWORD_MD5}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
else
|
||||||
|
LOG " - ${GREEN}no archive${NC}"
|
||||||
|
echo "arch: none"
|
||||||
|
fi
|
||||||
|
} > "${TMP_DIR}/PJ-Keys.txt"
|
||||||
|
|
||||||
|
LOG " - ${BLUE}PJ-Keys: ${NC}"
|
||||||
|
cat "${TMP_DIR}/PJ-Keys.txt"
|
||||||
|
LOG
|
||||||
|
|
||||||
|
LOG " - ${GREEN}ATTACH_MODE: ${ATTACH_MODE}${NC}"
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# substitution des pièces jointes par les codes fournis par jirafeau
|
||||||
|
cat "${TMP_DIR}/PJ-Keys.txt" | "${eMailShrinker}" ${DEBUG} ${ATTACH_MODE} -s "5ki" "${mbox}" "${TMP_DIR}/new-mbox" 2>> "${TTY}" || exit 1
|
||||||
|
|
||||||
|
########################################
|
||||||
|
# affichage de la structure à la fin
|
||||||
|
LOG " - ${BLUE}new-mbox:${NC}"
|
||||||
|
"${eMailShrinker}" -l "${TMP_DIR}/new-mbox" 2>> "${TTY}" || exit 1
|
||||||
|
|
||||||
|
echo -e "\nresul in ${TMP_DIR}/new-mbox"
|
||||||
|
exit 0
|
@ -60,15 +60,17 @@ const string Attachment::contentIDToken ("content-id");
|
|||||||
const string Attachment::PLAIN ("plain");
|
const string Attachment::PLAIN ("plain");
|
||||||
const string Attachment::HTML ("html");
|
const string Attachment::HTML ("html");
|
||||||
const string Attachment::RELATED ("related");
|
const string Attachment::RELATED ("related");
|
||||||
|
const string Attachment::SIGNED ("signed");
|
||||||
const string Attachment::ALTERNATIVE ("alternative");
|
const string Attachment::ALTERNATIVE ("alternative");
|
||||||
|
const string Attachment::KAZ_ATTACH_NAME ("vos-pieces-jointes-kaz-ici.htm");
|
||||||
|
const string Attachment::MULTIPART ("multipart/");
|
||||||
|
|
||||||
|
const regex Attachment::nameCharsetRegEx ( ".*name\\*=\\s*([; \t]*)");
|
||||||
const regex Attachment::nameCharsetRegEx (".*name\\*=(.*)");
|
const regex Attachment::nameRegEx ( ".*name=\\s*((\"(\\\\.|[^\\\\])*\")|[^; \t]*).*");
|
||||||
const regex Attachment::nameRegEx (".*name=\"([^\"]*)\".*");
|
const regex Attachment::boundaryRegEx (".*boundary=\\s*((\"(\\\\.|[^\\\\])*\")|[^; \t]*).*");
|
||||||
const regex Attachment::boundaryRegEx (".*boundary=\"?([^\" ]*)\"?.*");
|
|
||||||
const regex Attachment::cidDefRegEx (".*<([^>]*)>.*");
|
const regex Attachment::cidDefRegEx (".*<([^>]*)>.*");
|
||||||
const regex Attachment::textRegEx (".*text/("+PLAIN+"|"+HTML+").*");
|
const regex Attachment::textRegEx (".*text/("+PLAIN+"|"+HTML+").*");
|
||||||
const regex Attachment::multiRegEx ("\\s*multipart/(mixed|"+RELATED+"|"+ALTERNATIVE+").*");
|
const regex Attachment::multiRegEx ("\\s*"+MULTIPART+"(mixed|"+RELATED+"|"+ALTERNATIVE+"|"+SIGNED+").*");
|
||||||
|
|
||||||
const string Attachment::IMG_BEGIN ("<IMG");
|
const string Attachment::IMG_BEGIN ("<IMG");
|
||||||
const string Attachment::IMG_END (">");
|
const string Attachment::IMG_END (">");
|
||||||
@ -148,6 +150,7 @@ Attachment::getSection (const string &content, const string &beginTag, const str
|
|||||||
string::size_type stopPos = caseInsensitiveFind (content, endTag, startPos);
|
string::size_type stopPos = caseInsensitiveFind (content, endTag, startPos);
|
||||||
|
|
||||||
LOG_BUG (stopPos == string::npos, break, "eMailShrinker: bug A3: " << endTag << " not found! at: " << startPos);
|
LOG_BUG (stopPos == string::npos, break, "eMailShrinker: bug A3: " << endTag << " not found! at: " << startPos);
|
||||||
|
// LOG_BUG (stopPos == string::npos, break, "eMailShrinker: bug A3: " << endTag << " not found! at: " << startPos << endl << content);
|
||||||
LOG ("start: " << startPos << " stop: " << stopPos);
|
LOG ("start: " << startPos << " stop: " << stopPos);
|
||||||
|
|
||||||
LOG_BUG (startPos == stopPos, /**/, "eMailShrinker: bug A4: " << endTag << " without " << beginTag << " at: " << startPos);
|
LOG_BUG (startPos == stopPos, /**/, "eMailShrinker: bug A4: " << endTag << " without " << beginTag << " at: " << startPos);
|
||||||
@ -174,32 +177,51 @@ Attachment::getContentType () const {
|
|||||||
|
|
||||||
const string
|
const string
|
||||||
Attachment::getAttachName () const {
|
Attachment::getAttachName () const {
|
||||||
|
static string tokens [] = {contentTypeToken, contentDispositionToken};
|
||||||
DEF_LOG ("Attachment::getAttachName", "");
|
DEF_LOG ("Attachment::getAttachName", "");
|
||||||
string result = getProp (contentTypeToken, nameRegEx);
|
for (string token : tokens) {
|
||||||
|
// name=
|
||||||
|
string result = getProp (token, nameRegEx);
|
||||||
|
removeQuote (result);
|
||||||
if (result.length ()) {
|
if (result.length ()) {
|
||||||
LOG ("name=: " << result);
|
LOG ("name=: " << result);
|
||||||
encodedWord (result);
|
encodedWordDecode (result);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
result = getProp (contentTypeToken, nameCharsetRegEx);
|
// name*x=
|
||||||
|
for (int id = 0; ; ++id) {
|
||||||
|
string item = getProp (token, regex (".*name\\*"+to_string (id)+"=\\s*((\"(\\\\.|[^\\\\])*\")|[; \t]*).*"));
|
||||||
|
if (item.empty ())
|
||||||
|
break;
|
||||||
|
result += item;
|
||||||
|
}
|
||||||
|
removeQuote (result);
|
||||||
|
if (result.length ()) {
|
||||||
|
LOG ("name*x=: " << result);
|
||||||
|
encodedWordDecode (result);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
// name*=
|
||||||
|
result = getProp (token, nameCharsetRegEx);
|
||||||
|
removeQuote (result);
|
||||||
if (result.length ()) {
|
if (result.length ()) {
|
||||||
LOG ("name*=: " << result);
|
LOG ("name*=: " << result);
|
||||||
charsetValue (result);
|
charsetValueDecode (result);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
// XXX il faut composer s'il y a plusieurs ligne filename*x=
|
// name*x*=
|
||||||
result = getProp (contentDispositionToken, nameRegEx);
|
for (int id = 0; ; ++id) {
|
||||||
|
string item = getProp (token, regex (".*name\\*"+to_string (id)+"\\*=\\s*([^; ]*)"));
|
||||||
|
if (item.empty ())
|
||||||
|
break;
|
||||||
|
result += item;
|
||||||
|
}
|
||||||
|
removeQuote (result);
|
||||||
if (result.length ()) {
|
if (result.length ()) {
|
||||||
LOG ("filename=: " << result);
|
LOG ("name*x*=: " << result);
|
||||||
encodedWord (result);
|
encodedWordDecode (result);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
// XXX il faut composer s'il y a plusieurs ligne filename*x*=
|
|
||||||
result = getProp (contentDispositionToken, nameRegEx);
|
|
||||||
if (result.length ()) {
|
|
||||||
LOG ("filename*=: " << result);
|
|
||||||
charsetValue (result);
|
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
return getUnknown (getContentType ());
|
return getUnknown (getContentType ());
|
||||||
}
|
}
|
||||||
@ -253,7 +275,7 @@ Attachment::isDefProp (const string &token, const string &val) const {
|
|||||||
if (it == env.end ())
|
if (it == env.end ())
|
||||||
return false;
|
return false;
|
||||||
// XXX case insensitive ??
|
// XXX case insensitive ??
|
||||||
return it->second.find (val) != string::npos;
|
return caseInsensitiveFind (it->second, val) != string::npos;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
@ -266,6 +288,8 @@ Attachment::Attachment (ifstream &mbox, const int &level, const streamoff beginI
|
|||||||
toExtract (false),
|
toExtract (false),
|
||||||
toUpdate (false),
|
toUpdate (false),
|
||||||
toDisclaim (false),
|
toDisclaim (false),
|
||||||
|
isKazAttachment (false),
|
||||||
|
isSigned (false),
|
||||||
boundaryMiddleSize (0) {
|
boundaryMiddleSize (0) {
|
||||||
DEF_LOG ("Attachment::Attachment", "curPos: " << curPos << " level: " << level);
|
DEF_LOG ("Attachment::Attachment", "curPos: " << curPos << " level: " << level);
|
||||||
readMime (mbox, curPos);
|
readMime (mbox, curPos);
|
||||||
@ -273,6 +297,13 @@ Attachment::Attachment (ifstream &mbox, const int &level, const streamoff beginI
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
|
inline string
|
||||||
|
cleanString (const string &line) {
|
||||||
|
if (!line.empty () && line[line.size() - 1] == '\r')
|
||||||
|
return line.substr (0, line.size () - 1);
|
||||||
|
return line;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
Attachment::readMime (ifstream &mbox, streamoff &curPos) {
|
Attachment::readMime (ifstream &mbox, streamoff &curPos) {
|
||||||
DEF_LOG ("Attachment::readMime", "curPos: " << curPos);
|
DEF_LOG ("Attachment::readMime", "curPos: " << curPos);
|
||||||
@ -281,7 +312,7 @@ Attachment::readMime (ifstream &mbox, streamoff &curPos) {
|
|||||||
for (; getline (mbox, line); ) {
|
for (; getline (mbox, line); ) {
|
||||||
LOG ("pos: " << curPos << " line: " << line);
|
LOG ("pos: " << curPos << " line: " << line);
|
||||||
curPos += line.length () + 1;
|
curPos += line.length () + 1;
|
||||||
if (line.empty ())
|
if (line.empty () || "\r" == line)
|
||||||
break;
|
break;
|
||||||
if (line[0] == ' ' || line[0] == '\t') {
|
if (line[0] == ' ' || line[0] == '\t') {
|
||||||
if (lastVar.empty ()) {
|
if (lastVar.empty ()) {
|
||||||
@ -289,8 +320,8 @@ Attachment::readMime (ifstream &mbox, streamoff &curPos) {
|
|||||||
LOG_BUG (true, /**/, "eMailShrinker: bug A5: not compliant MIME. pos: " << (curPos - (line.length () + 1)) << " line: " << line);
|
LOG_BUG (true, /**/, "eMailShrinker: bug A5: not compliant MIME. pos: " << (curPos - (line.length () + 1)) << " line: " << line);
|
||||||
} else {
|
} else {
|
||||||
LOG ("add line to var: " << line);
|
LOG ("add line to var: " << line);
|
||||||
env.find (lastVar)->second += line;
|
env.find (lastVar)->second += cleanString (line);
|
||||||
LOG ("new val: " << env.find (lastVar)->second);
|
LOG ("new val: <" << lastVar << " <=> " << env.find (lastVar)->second << ">");
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -299,8 +330,11 @@ Attachment::readMime (ifstream &mbox, streamoff &curPos) {
|
|||||||
lastVar = line.substr (0, colonPos);
|
lastVar = line.substr (0, colonPos);
|
||||||
toLower (lastVar);
|
toLower (lastVar);
|
||||||
LOG ("find var: " << lastVar);
|
LOG ("find var: " << lastVar);
|
||||||
string val (line.length () >= colonPos+2 ? line.substr (colonPos+2) : ""); // XXX check RFC " " after ": "
|
++colonPos;
|
||||||
LOG ("new var: " << lastVar << " <=> " << val);
|
if (line.length () >= colonPos && line [colonPos] == ' ')
|
||||||
|
++colonPos;
|
||||||
|
string val (cleanString (line.length () >= colonPos ? line.substr (colonPos) : ""));
|
||||||
|
LOG ("new var: <" << lastVar << " <=> " << val << ">");
|
||||||
env [lastVar] = val;
|
env [lastVar] = val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -308,12 +342,19 @@ Attachment::readMime (ifstream &mbox, streamoff &curPos) {
|
|||||||
|
|
||||||
contentPos = curPos;
|
contentPos = curPos;
|
||||||
cid = getProp (contentIDToken, cidDefRegEx);
|
cid = getProp (contentIDToken, cidDefRegEx);
|
||||||
|
|
||||||
|
if (caseInsensitiveFind (getContentType (), MULTIPART) != string::npos) {
|
||||||
|
string multiProp = getProp (contentTypeToken, multiRegEx);
|
||||||
|
if (SIGNED == multiProp)
|
||||||
|
isSigned = true;
|
||||||
boundary = getProp (contentTypeToken, boundaryRegEx);
|
boundary = getProp (contentTypeToken, boundaryRegEx);
|
||||||
|
removeQuote (boundary);
|
||||||
LOG ("boundary: " << boundary);
|
LOG ("boundary: " << boundary);
|
||||||
if (boundary.length ()) {
|
if (boundary.length ()) {
|
||||||
boundary = "--"+boundary+"--";
|
boundary = "--"+boundary+"--";
|
||||||
boundaryMiddleSize = boundary.length () - 2;
|
boundaryMiddleSize = boundary.length () - 2;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
LOG ("readMime contentPos: " << contentPos << " cid: " << cid << " boundary: " << boundary);
|
LOG ("readMime contentPos: " << contentPos << " cid: " << cid << " boundary: " << boundary);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -354,7 +395,11 @@ Attachment::nextBondary (ifstream &mbox, streamoff &curPos) {
|
|||||||
++it)
|
++it)
|
||||||
if (couple.find (*it) != string::npos) {
|
if (couple.find (*it) != string::npos) {
|
||||||
LOG ("find: "+ *it);
|
LOG ("find: "+ *it);
|
||||||
|
LOG ("size: " << subAttachements.size ());
|
||||||
|
if (subAttachements.size ())
|
||||||
subAttachements.back ().toUpdate = true;
|
subAttachements.back ().toUpdate = true;
|
||||||
|
else
|
||||||
|
LOG_BUG (true, continue, "eMailShrinker: bug A10: boundary format ? " << *this);
|
||||||
}
|
}
|
||||||
prev = clearLine;
|
prev = clearLine;
|
||||||
continue;
|
continue;
|
||||||
@ -397,15 +442,19 @@ Attachment::markDisclaim (bool &plainMarked, bool &htmlMarked) {
|
|||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
bool
|
bool
|
||||||
Attachment::markSignificant (const string &parentMultiProp, const streamoff &minAttachSize, ifstream &mbox, vector<Attachment *> &allMarkedPtrs) {
|
Attachment::markSignificant (const string &parentMultiProp, const bool &parentSigned, const streamoff &minAttachSize, ifstream &mbox, vector<Attachment *> &allMarkedPtrs) {
|
||||||
DEF_LOG ("Attachment::markSignificant", "parentMultiProp: " << parentMultiProp << " minAttachSize: " << minAttachSize);
|
DEF_LOG ("Attachment::markSignificant", "parentMultiProp: " << parentMultiProp << " minAttachSize: " << minAttachSize);
|
||||||
|
isSigned |= parentSigned;
|
||||||
string textProp = getProp (contentTypeToken, textRegEx);
|
string textProp = getProp (contentTypeToken, textRegEx);
|
||||||
bool cantBeExtract ((parentMultiProp == ALTERNATIVE && (textProp == PLAIN || textProp == HTML)) ||
|
bool cantBeExtract ((parentMultiProp == ALTERNATIVE && (textProp == PLAIN || textProp == HTML)) ||
|
||||||
(parentMultiProp == RELATED && textProp == HTML));
|
(parentMultiProp == RELATED && textProp == HTML));
|
||||||
string multiProp = getProp (contentTypeToken, multiRegEx);
|
string multiProp = getProp (contentTypeToken, multiRegEx);
|
||||||
for (Attachment &sub : subAttachements)
|
for (Attachment &sub : subAttachements)
|
||||||
cantBeExtract |= sub.markSignificant (multiProp, minAttachSize, mbox, allMarkedPtrs);
|
cantBeExtract |= sub.markSignificant (multiProp, parentSigned || isSigned, minAttachSize, mbox, allMarkedPtrs);
|
||||||
if (getProp (contentTypeToken, textRegEx) == HTML) {
|
if (getProp (contentTypeToken, textRegEx) == HTML) {
|
||||||
|
if (KAZ_ATTACH_NAME == getAttachName ())
|
||||||
|
isKazAttachment = true;
|
||||||
|
else {
|
||||||
string content = getContent (mbox);
|
string content = getContent (mbox);
|
||||||
vector<string> imgs;
|
vector<string> imgs;
|
||||||
getSection (content, IMG_BEGIN, IMG_END, imgs);
|
getSection (content, IMG_BEGIN, IMG_END, imgs);
|
||||||
@ -413,18 +462,30 @@ Attachment::markSignificant (const string &parentMultiProp, const streamoff &min
|
|||||||
if (embeddedData.size ())
|
if (embeddedData.size ())
|
||||||
toUpdate = true;
|
toUpdate = true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
cantBeExtract |= toUpdate;
|
cantBeExtract |= toUpdate;
|
||||||
if (boundary.empty () && getSize () >= minAttachSize && !cantBeExtract)
|
if (boundary.empty () && getSize () >= minAttachSize && !cantBeExtract)
|
||||||
cantBeExtract = toExtract = true; // XXX cantBeExtract ?
|
cantBeExtract = toExtract = true;
|
||||||
if (toExtract || toUpdate || toDisclaim)
|
if (toExtract || toUpdate || toDisclaim || isKazAttachment)
|
||||||
allMarkedPtrs.push_back (this);
|
allMarkedPtrs.push_back (this);
|
||||||
return cantBeExtract;
|
return cantBeExtract;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ================================================================================
|
||||||
|
string
|
||||||
|
Attachment::getMime (ifstream &mbox) const {
|
||||||
|
DEF_LOG ("Attachment::getMime", "beginPos: " << beginPos << " contentPos: " << contentPos);
|
||||||
|
string mime;
|
||||||
|
mime.resize (contentPos-beginPos);
|
||||||
|
mbox.seekg (beginPos, ios::beg);
|
||||||
|
mbox.read (&mime[0], contentPos-beginPos);
|
||||||
|
return mime;
|
||||||
|
}
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
string
|
string
|
||||||
Attachment::getContent (ifstream &mbox) const {
|
Attachment::getContent (ifstream &mbox) const {
|
||||||
DEF_LOG ("Attachment::getContent", "contentPos: " << contentPos);
|
DEF_LOG ("Attachment::getContent", "contentPos: " << contentPos << " endPos: " << endPos);
|
||||||
string content;
|
string content;
|
||||||
content.resize (endPos-contentPos);
|
content.resize (endPos-contentPos);
|
||||||
mbox.seekg (contentPos, ios::beg);
|
mbox.seekg (contentPos, ios::beg);
|
||||||
@ -482,14 +543,16 @@ Attachment::replaceEmbedded (string &content) const {
|
|||||||
ostream&
|
ostream&
|
||||||
kaz::operator << (ostream& os, const Attachment& attachment) {
|
kaz::operator << (ostream& os, const Attachment& attachment) {
|
||||||
string prop, sep;
|
string prop, sep;
|
||||||
if (attachment.toExtract) { prop = "to extract"; sep = ", "; }
|
if (attachment.isSigned) { prop += sep+"signed"; sep = ", "; }
|
||||||
|
if (attachment.isKazAttachment) { prop += sep+"kazDisclaim"; sep = ", "; }
|
||||||
|
if (attachment.toExtract) { prop += sep+"to extract"; sep = ", "; }
|
||||||
if (attachment.toUpdate) { prop += sep+"need update"; sep = ", "; }
|
if (attachment.toUpdate) { prop += sep+"need update"; sep = ", "; }
|
||||||
if (attachment.toDisclaim) { prop += sep+"need diclaim"; sep = ", "; }
|
if (attachment.toDisclaim) { prop += sep+"need diclaim"; sep = ", "; }
|
||||||
if (attachment.embeddedData.size ()) { prop += sep+"embeddedData"; }
|
if (attachment.embeddedData.size ()) { prop += sep+"embeddedData"; }
|
||||||
if (prop.length ())
|
if (prop.length ())
|
||||||
prop = " ["+prop+"]";
|
prop = " ["+prop+"]";
|
||||||
|
|
||||||
os << setw ((attachment.level % 20)*2) << "" << setw (10) << SizeArg (attachment.getSize ()) << " " << attachment.getContentType ()
|
os << ("****************************************"+40-(attachment.level % 20)*2) << setw (10) << SizeArg (attachment.getSize ()) << " " << attachment.getContentType ()
|
||||||
<< prop << (attachment.cid.length () ? " id: "+attachment.cid : "")
|
<< prop << (attachment.cid.length () ? " id: "+attachment.cid : "")
|
||||||
<< (attachment.boundary.length () ? " boundary: "+attachment.boundary : "")
|
<< (attachment.boundary.length () ? " boundary: "+attachment.boundary : "")
|
||||||
<< " (" << attachment.beginPos << " / " << attachment.contentPos << " / " << attachment.endPos << ") " << endl;
|
<< " (" << attachment.beginPos << " / " << attachment.contentPos << " / " << attachment.endPos << ") " << endl;
|
||||||
|
@ -32,15 +32,20 @@
|
|||||||
// knowledge of the CeCILL-B license and that you accept its terms. //
|
// knowledge of the CeCILL-B license and that you accept its terms. //
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#include <iostream>
|
#include <algorithm>
|
||||||
#include <vector>
|
|
||||||
#include <set>
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
#include <iostream>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <algorithm>
|
#include <regex>
|
||||||
|
#include <set>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include <boost/assign.hpp>
|
||||||
|
#include <boost/algorithm/string.hpp>
|
||||||
|
|
||||||
|
#include "version.hpp"
|
||||||
#include "kazDebug.hpp"
|
#include "kazDebug.hpp"
|
||||||
#include "kazMisc.hpp"
|
#include "kazMisc.hpp"
|
||||||
#include "SizeArg.hpp"
|
#include "SizeArg.hpp"
|
||||||
@ -50,51 +55,65 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace kaz;
|
using namespace kaz;
|
||||||
|
|
||||||
static const string KAZ_WEB_SITE = "https://kaz.bzh/";
|
static const string KAZ_WEB_SITE ("https://kaz.bzh/");
|
||||||
static const string TMPL_DOWNLOAD = "{{DOWNLOAD}}";
|
static const string TMPL_DOWNLOAD ("{{DOWNLOAD}}");
|
||||||
static const string TMPL_FILENAME = "{{FILENAME}}";
|
static const string TMPL_FILENAME ("{{FILENAME}}");
|
||||||
static const string CID = "cid:";
|
static const string CID ("cid:");
|
||||||
|
|
||||||
static const string KAZ_PLAIN_HR = "______________________________________________________________________________";
|
// "l=/" => v1 compatibility
|
||||||
static const string KAZ_PLAIN_START = "~~ PJ-KAZ !"; // don't end whith space
|
static const regex archiveURLRegex (".*(([&?]g=)|([&?]l=/)).*");
|
||||||
static const string KAZ_PLAIN_STOP = KAZ_PLAIN_START+" ~~";
|
|
||||||
static const string KAZ_PLAIN_DONT_TOUCH = "(conservez cette partie intacte dans votre réponse si vous voulez transmettre les documents précédents)";
|
|
||||||
static const string KAZ_PLAIN_WARNING = "Attention : Kaz a dépollué ce message. Les pièces jointes ont été retirées et placées dans un dépôt provisoire. Elles seront automatiquement supprimées dans 1 mois. Si elles sont importantes et que vous souhaitez les conserver, vous devez utiliser les liens ci-dessous. Pour mieux comprendre la politique de nos services visitez kaz.bzh";
|
|
||||||
static const string KAZ_PLAIN_DOWLOAD_ONE = "Vos pièces jointes sont à télécharger individuellement ici :";
|
|
||||||
static const string KAZ_PLAIN_DOWLOAD_OTHER = "(Contenu dans des messages précédents)";
|
|
||||||
static const string KAZ_PLAIN_DOWLOAD_ALL = "Vous pouvez télécharger l'ensemble dans une archive là :";
|
|
||||||
|
|
||||||
static const string HEAD = "<head>";
|
static const string KAZ_PLAIN_HR ("______________________________________________________________________________");
|
||||||
static const string HEAD_END = "</head>";
|
static const string KAZ_PLAIN_START ("~~ PJ-KAZ !"); // don't end whith space
|
||||||
static const string KAZ_CSS_URL = "https://kaz.bzh/m/email.css";
|
static const string KAZ_PLAIN_STOP (KAZ_PLAIN_START+" ~~");
|
||||||
static const string KAZ_CSS = "<link rel=\"stylesheet\" type=\"text/css\" charset=\"utf-8\" href=\""+KAZ_CSS_URL+"\"/>";
|
static const string KAZ_PLAIN_DONT_TOUCH ("(conservez cette partie intacte dans votre réponse si vous voulez transmettre les documents précédents (version "+LAST_VERSION_NUM+"))");
|
||||||
static const string A_END = "</a>";
|
static const string KAZ_PLAIN_WARNING ("Attention : Kaz a dépollué ce message. Les pièces jointes ont été retirées et placées dans un dépôt provisoire. "
|
||||||
static const string LI_BEGIN = "<li";
|
"Elles seront automatiquement supprimées dans 1 mois. "
|
||||||
static const string CLASS_ONE = "class=\"one\"";
|
"Si elles sont importantes et que vous souhaitez les conserver, vous devez utiliser les liens ci-dessous. "
|
||||||
static const string LI_ONE = LI_BEGIN+" "+CLASS_ONE+">";
|
"Pour mieux comprendre la politique de nos services visitez kaz.bzh");
|
||||||
static const string LI_ALL = LI_BEGIN+" class=\"all\">";
|
static const string KAZ_PLAIN_DOWLOAD_ONE ("Vos pièces jointes sont à télécharger individuellement ici :");
|
||||||
static const string LI_END = "</li>";
|
static const string KAZ_PLAIN_DOWLOAD_OTHER ("(Contenu dans des messages précédents)");
|
||||||
static const string HREF_ONE = "href=\"";
|
static const string KAZ_PLAIN_DOWLOAD_ALL ("Vous pouvez télécharger l'ensemble dans une archive là :");
|
||||||
static const string BODY_END = "</body>";
|
|
||||||
static const string HTML_END = "</html>";
|
|
||||||
|
|
||||||
static const string KAZ_HTML_TAG = "<!--KAZ"; // don't end whith space
|
static const string HEAD ("<head>");
|
||||||
static const string KAZ_HTML_START = KAZ_HTML_TAG+" START-->";
|
static const string HEAD_END ("</head>");
|
||||||
static const string KAZ_HTML_STOP = KAZ_HTML_TAG+" STOP-->";
|
static const string KAZ_CSS_URL ("https://kaz.bzh/m/email.css");
|
||||||
|
static const string KAZ_CSS ("<link rel=\"stylesheet\" type=\"text/css\" charset=\"utf-8\" href=\""+KAZ_CSS_URL+"\"/>");
|
||||||
|
static const string A_END ("</a>");
|
||||||
|
static const string LI_BEGIN ("<li");
|
||||||
|
static const string CLASS_ONE ("class=\"one\"");
|
||||||
|
static const string LI_ONE (LI_BEGIN+" "+CLASS_ONE+">");
|
||||||
|
static const string LI_ALL (LI_BEGIN+" class=\"all\">");
|
||||||
|
static const string LI_END ("</li>");
|
||||||
|
static const string HREF_ONE ("href=\"");
|
||||||
|
static const string KAZ_HTML_CONTENT ("<!DOCTYPE html><html lang=\"fr\"><head><meta charset=\"utf-8\"><title>KAZ</title>"+KAZ_CSS+"</head><body>");
|
||||||
|
static const string BODY_END ("</body>");
|
||||||
|
static const string HTML_END ("</html>");
|
||||||
|
|
||||||
|
static const string KAZ_HTML_TAG ("<!--KAZ"); // don't end whith space
|
||||||
|
static const string KAZ_HTML_START (KAZ_HTML_TAG+" START-->");
|
||||||
|
static const string KAZ_HTML_STOP (KAZ_HTML_TAG+" STOP-->");
|
||||||
// Textes précédents encodés en SGML
|
// Textes précédents encodés en SGML
|
||||||
static const string KAZ_HTML_DONT_TOUCH = "(conservez cette partie intacte dans votre réponse si vous voulez transmettre les documents précédents)";
|
static const string KAZ_HTML_DONT_TOUCH ("(conservez cette partie intacte dans votre réponse si vous voulez transmettre les documents précédents (version "+LAST_VERSION_NUM+"))");
|
||||||
static const string KAZ_HTML_DOWLOAD_ONE = "Vos pièces jointes sont à télécharger individuellement ici :";
|
static const string KAZ_HTML_DOWLOAD_ONE ("Vos pièces jointes sont à télécharger individuellement ici :");
|
||||||
static const string KAZ_HTML_DOWLOAD_OTHER = "(Contenu dans des messages précédents)";
|
static const string KAZ_HTML_DOWLOAD_OTHER ("(Contenu dans des messages précédents)");
|
||||||
static const string KAZ_HTML_DOWLOAD_ALL = "Vous pouvez télécharger l'ensemble dans une archive là :";
|
static const string KAZ_HTML_DOWLOAD_ALL ("Vous pouvez télécharger l'ensemble dans une archive là :");
|
||||||
static const string KAZ_HTML_ARCHIVE = "archive";
|
static const string KAZ_HTML_ARCHIVE ("archive");
|
||||||
|
|
||||||
|
static const string KAZ_EMPTY_TEXT_PLAIN ("Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: base64\n");
|
||||||
|
static const string KAZ_ATTACHMENT_TEXT_HTML ("Content-Type: text/html; charset=utf-8\n"
|
||||||
|
"Content-Disposition: attachment; filename=\"" + Attachment::KAZ_ATTACH_NAME + "\"\n"
|
||||||
|
"Content-Transfer-Encoding: base64\n");
|
||||||
|
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
vector <string>
|
vector <string>
|
||||||
Attachment::stringsToUpdate ({KAZ_PLAIN_START, "\""+CID});
|
Attachment::stringsToUpdate ({KAZ_PLAIN_START, "\""+CID});
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
const string MainAttachment::templatePlainAddLink (" - "+TMPL_DOWNLOAD+" "+TMPL_FILENAME+"\r\n");
|
const string MainAttachment::templatePlainAddLink (" * "+TMPL_FILENAME+" < "+TMPL_DOWNLOAD+" >\n");
|
||||||
const string MainAttachment::templatePlainAllLink ("\r\n"+KAZ_PLAIN_DOWLOAD_ALL+"\r\n * "+TMPL_DOWNLOAD+"\r\n");
|
const string MainAttachment::templatePlainAllLink ("\n * "+KAZ_PLAIN_DOWLOAD_ALL+" < "+TMPL_DOWNLOAD+" >\n");
|
||||||
|
|
||||||
const string MainAttachment::templateHtmlHeader (KAZ_HTML_START+"<p style=\"clear: left; padding: 1pc 0 0 0; font-size:10px; color:#969696;\">"+KAZ_PLAIN_START+"</p><hr>\n"
|
const string MainAttachment::templateHtmlHeader (KAZ_HTML_START+"<p style=\"clear: left; padding: 1pc 0 0 0; font-size:10px; color:#969696;\">"+KAZ_PLAIN_START+"</p><hr>\n"
|
||||||
"<div class=\"kaz\">"
|
"<div class=\"kaz\">"
|
||||||
@ -105,10 +124,68 @@ const string MainAttachment::templateHtmlOtherLink ("</ul>"+KAZ_HTML_DOWLOAD_OTH
|
|||||||
const string MainAttachment::templateHtmlAllLink ("</ul><ul>"+LI_ALL+KAZ_HTML_DOWLOAD_ALL+" <a href=\""+TMPL_DOWNLOAD+"\">"+KAZ_HTML_ARCHIVE+"</a>"+LI_END+"\n");
|
const string MainAttachment::templateHtmlAllLink ("</ul><ul>"+LI_ALL+KAZ_HTML_DOWLOAD_ALL+" <a href=\""+TMPL_DOWNLOAD+"\">"+KAZ_HTML_ARCHIVE+"</a>"+LI_END+"\n");
|
||||||
const string MainAttachment::templateHtmlFooter ("</ul></p>\n"
|
const string MainAttachment::templateHtmlFooter ("</ul></p>\n"
|
||||||
"<p class=\"msg\"><a class=\"kaz\" href=\""+KAZ_WEB_SITE+"\"> "+KAZ_WEB_SITE+" </a></p></div>\n"
|
"<p class=\"msg\"><a class=\"kaz\" href=\""+KAZ_WEB_SITE+"\"> "+KAZ_WEB_SITE+" </a></p></div>\n"
|
||||||
"<hr><p style=\"font-size:10px; color:#969696;\">"+KAZ_PLAIN_STOP+"</p>"+KAZ_HTML_STOP+"\n");
|
"<hr><p style=\"font-size:10px; color:#969696;\">"+KAZ_PLAIN_STOP+"</p>"+KAZ_HTML_STOP+"\n\n");
|
||||||
|
|
||||||
const regex MainAttachment::whiteSpaceRegEx ("\\s+");
|
const regex MainAttachment::whiteSpaceRegEx ("\\s+");
|
||||||
|
|
||||||
|
// ================================================================================
|
||||||
|
const string
|
||||||
|
kaz::attachModeLabels[] = {
|
||||||
|
"None", "Footer", "Attachment", "Both"
|
||||||
|
};
|
||||||
|
const map<string, AttachMode>
|
||||||
|
kaz::attachModeMap = boost::assign::map_list_of
|
||||||
|
("none", NONE)
|
||||||
|
("footer", FOOTER)
|
||||||
|
("attachment", ATTACHMENT)
|
||||||
|
("both", BOTH)
|
||||||
|
;
|
||||||
|
ostream &
|
||||||
|
kaz::operator << (ostream &out, const AttachMode &attachMode) {
|
||||||
|
//BOOST_ASSERT (treeType >= MIN && treeType <= ALPHA);
|
||||||
|
return out << attachModeLabels [attachMode];
|
||||||
|
}
|
||||||
|
istream &
|
||||||
|
kaz::operator >> (istream &in, AttachMode &attachMode) {
|
||||||
|
string token;
|
||||||
|
in >> token;
|
||||||
|
auto pos = attachModeMap.find (boost::algorithm::to_lower_copy (token));
|
||||||
|
if (pos == attachModeMap.end ())
|
||||||
|
in.setstate (ios_base::failbit);
|
||||||
|
else
|
||||||
|
attachMode = pos->second;
|
||||||
|
return in;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ================================================================================
|
||||||
|
const string
|
||||||
|
kaz::headerTypeLabels[] = {
|
||||||
|
"Same", "Multi", "MainPlain", "AttachHtml"
|
||||||
|
};
|
||||||
|
const map<string, HeaderType>
|
||||||
|
kaz::headerTypeMap = boost::assign::map_list_of
|
||||||
|
("same", SAME)
|
||||||
|
("multi", MULTI)
|
||||||
|
("mainplain", MAIN_PLAIN)
|
||||||
|
("attachhtml", ATTACH_HTML)
|
||||||
|
;
|
||||||
|
ostream &
|
||||||
|
kaz::operator << (ostream &out, const HeaderType &headerType) {
|
||||||
|
//BOOST_ASSERT (treeType >= MIN && treeType <= ALPHA);
|
||||||
|
return out << headerTypeLabels [headerType];
|
||||||
|
}
|
||||||
|
istream &
|
||||||
|
kaz::operator >> (istream &in, HeaderType &headerType) {
|
||||||
|
string token;
|
||||||
|
in >> token;
|
||||||
|
auto pos = headerTypeMap.find (boost::algorithm::to_lower_copy (token));
|
||||||
|
if (pos == headerTypeMap.end ())
|
||||||
|
in.setstate (ios_base::failbit);
|
||||||
|
else
|
||||||
|
headerType = pos->second;
|
||||||
|
return in;
|
||||||
|
}
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
void
|
void
|
||||||
MainAttachment::copy (ifstream &mbox, ofstream &outbox, const streamoff &begin, const streamoff &end) {
|
MainAttachment::copy (ifstream &mbox, ofstream &outbox, const streamoff &begin, const streamoff &end) {
|
||||||
@ -129,8 +206,8 @@ MainAttachment::readArchiveUrl () {
|
|||||||
archiveDownloadURL.clear ();
|
archiveDownloadURL.clear ();
|
||||||
string line;
|
string line;
|
||||||
getline (cin, line);
|
getline (cin, line);
|
||||||
LOG_BUG (line.rfind ("arch: ", 0) != 0, return, "eMailShrinker: bug ZZ: no archive link. (line: " << line << ")");
|
LOG_BUG (line.rfind ("arch: ", 0) != 0, return, "eMailShrinker: bug M9: no archive link. (line: " << line << ")");
|
||||||
LOG_BUG (line.rfind ("arch: bad", 0) == 0, return, "eMailShrinker: bug ZZ: bad archive link. (line: " << line << ")");
|
LOG_BUG (line.rfind ("arch: bad", 0) == 0, return, "eMailShrinker: bug M10: bad archive link. (line: " << line << ")");
|
||||||
if (line.rfind ("arch: none", 0) == 0)
|
if (line.rfind ("arch: none", 0) == 0)
|
||||||
return;
|
return;
|
||||||
archiveDownloadURL = line.substr (6);
|
archiveDownloadURL = line.substr (6);
|
||||||
@ -144,7 +221,7 @@ MainAttachment::readDownloadUrl (string &url) {
|
|||||||
string line;
|
string line;
|
||||||
getline (cin, line);
|
getline (cin, line);
|
||||||
LOG ("get URL: " << line);
|
LOG ("get URL: " << line);
|
||||||
LOG_BUG (line.rfind ("url: ", 0) != 0, return, "eMailShrinker: bug ZZ: no download link. (line: " << line << ")");
|
LOG_BUG (line.rfind ("url: ", 0) != 0, return, "eMailShrinker: bug M11: no download link. (line: " << line << ")");
|
||||||
url = line.substr (5);
|
url = line.substr (5);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -163,11 +240,12 @@ void
|
|||||||
MainAttachment::addLink (string &plain, string &html, const string &url, const string &name) const {
|
MainAttachment::addLink (string &plain, string &html, const string &url, const string &name) const {
|
||||||
string plainNewOneLink (templatePlainAddLink);
|
string plainNewOneLink (templatePlainAddLink);
|
||||||
replaceAll (plainNewOneLink, TMPL_DOWNLOAD, url);
|
replaceAll (plainNewOneLink, TMPL_DOWNLOAD, url);
|
||||||
replaceAll (plainNewOneLink, TMPL_FILENAME, name);
|
replaceAll (plainNewOneLink, TMPL_FILENAME, "\""+name+"\"");
|
||||||
plain += plainNewOneLink;
|
plain += plainNewOneLink;
|
||||||
string htmlNewOneLink (templateHtmlAddLink);
|
string htmlNewOneLink (templateHtmlAddLink);
|
||||||
string codedUrl (url);
|
string codedUrl (url);
|
||||||
replaceAll (codedUrl, "&", "&");
|
// pb &
|
||||||
|
// replaceAll (codedUrl, "&", "&");
|
||||||
replaceAll (htmlNewOneLink, TMPL_DOWNLOAD, codedUrl);
|
replaceAll (htmlNewOneLink, TMPL_DOWNLOAD, codedUrl);
|
||||||
replaceAll (htmlNewOneLink, TMPL_FILENAME, name);
|
replaceAll (htmlNewOneLink, TMPL_FILENAME, name);
|
||||||
html += htmlNewOneLink;
|
html += htmlNewOneLink;
|
||||||
@ -182,7 +260,7 @@ MainAttachment::getDisclaim (string &plain, string &html) const {
|
|||||||
int linkCount (0);
|
int linkCount (0);
|
||||||
string plainNewLinks, htmlNewLinks;
|
string plainNewLinks, htmlNewLinks;
|
||||||
for (Attachment *attachP : allMarkedPtrs) {
|
for (Attachment *attachP : allMarkedPtrs) {
|
||||||
if (!attachP->toExtract)
|
if (attachP->isSigned || !attachP->toExtract)
|
||||||
continue;
|
continue;
|
||||||
addLink (plainNewLinks, htmlNewLinks, attachP->downloadUrl, attachP->getAttachName ());
|
addLink (plainNewLinks, htmlNewLinks, attachP->downloadUrl, attachP->getAttachName ());
|
||||||
++linkCount;
|
++linkCount;
|
||||||
@ -191,7 +269,7 @@ MainAttachment::getDisclaim (string &plain, string &html) const {
|
|||||||
// previousLinks.erase (attachP->downloadUrl);
|
// previousLinks.erase (attachP->downloadUrl);
|
||||||
}
|
}
|
||||||
for (Attachment *attachP : allMarkedPtrs) {
|
for (Attachment *attachP : allMarkedPtrs) {
|
||||||
if (!attachP->embeddedData.size ())
|
if (attachP->isSigned || !attachP->embeddedData.size ())
|
||||||
continue;
|
continue;
|
||||||
for (EmbeddedData &embedded : attachP->embeddedData) {
|
for (EmbeddedData &embedded : attachP->embeddedData) {
|
||||||
addLink (plainNewLinks, htmlNewLinks, embedded.downloadUrl, embedded.name);
|
addLink (plainNewLinks, htmlNewLinks, embedded.downloadUrl, embedded.name);
|
||||||
@ -208,22 +286,22 @@ MainAttachment::getDisclaim (string &plain, string &html) const {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
plain = "\r\n"+KAZ_PLAIN_START+"\r\n"+KAZ_PLAIN_HR+"\r\n"+KAZ_PLAIN_DONT_TOUCH+"\r\n\r\n"+KAZ_PLAIN_WARNING+"\r\n\r\n"+KAZ_PLAIN_DOWLOAD_ONE+"\r\n"+plainNewLinks;
|
plain = "\n"+KAZ_PLAIN_START+"\n\n"+KAZ_PLAIN_HR+"\n"+KAZ_PLAIN_DONT_TOUCH+"\n\n"+KAZ_PLAIN_DOWLOAD_ONE+"\n"+plainNewLinks;
|
||||||
html = templateHtmlHeader+htmlNewLinks;
|
html = templateHtmlHeader+htmlNewLinks;
|
||||||
if (previousLinks.size ()) {
|
if (previousLinks.size ()) {
|
||||||
plain += KAZ_PLAIN_DOWLOAD_OTHER+"\r\n"+plainOldLinks;
|
plain += "\n"+KAZ_PLAIN_DOWLOAD_OTHER+"\n"+plainOldLinks;
|
||||||
html += templateHtmlOtherLink+htmlOldLinks;
|
html += templateHtmlOtherLink+htmlOldLinks;
|
||||||
}
|
}
|
||||||
if (linkCount > 1 && archiveDownloadURL.length ()) {
|
if (linkCount > 1 && archiveDownloadURL.length ()) {
|
||||||
string allPlainLinks (templatePlainAllLink);
|
string allPlainLinks (templatePlainAllLink);
|
||||||
replaceAll (allPlainLinks, TMPL_DOWNLOAD, archiveDownloadURL);
|
replaceAll (allPlainLinks, TMPL_DOWNLOAD, archiveDownloadURL);
|
||||||
plain += allPlainLinks;
|
plain += allPlainLinks;
|
||||||
string allLinks (templateHtmlAllLink);
|
string allHtmlLinks (templateHtmlAllLink);
|
||||||
replaceAll (allLinks, TMPL_DOWNLOAD, archiveDownloadURL);
|
replaceAll (allHtmlLinks, TMPL_DOWNLOAD, archiveDownloadURL);
|
||||||
html += allLinks;
|
html += allHtmlLinks;
|
||||||
}
|
}
|
||||||
html += templateHtmlFooter;
|
html += templateHtmlFooter+"\n";
|
||||||
plain += "\r\n\r\n"+KAZ_WEB_SITE+"\r\n"+KAZ_PLAIN_HR+"\r\n"+KAZ_PLAIN_STOP+"\r\n";
|
plain += "\n\n"+KAZ_WEB_SITE+"\n\n"+KAZ_PLAIN_WARNING+"\n"+KAZ_PLAIN_HR+"\n"+KAZ_PLAIN_STOP+"\n\n\n";
|
||||||
// & => & done
|
// & => & done
|
||||||
LOG ("plain: " << plain);
|
LOG ("plain: " << plain);
|
||||||
LOG ("html: " << html);
|
LOG ("html: " << html);
|
||||||
@ -239,12 +317,13 @@ MainAttachment::addPrevious (const string &href, const string &name, const bool
|
|||||||
if (oldVal.length () && name.length () && !trust)
|
if (oldVal.length () && name.length () && !trust)
|
||||||
return;
|
return;
|
||||||
previousLinks.erase (href);
|
previousLinks.erase (href);
|
||||||
previousLinks [href] = name;
|
previousLinks [href] = regex_replace (name, regex (R"([\t\n\"]+|(\\\")|(>\s*))"), "");
|
||||||
LOG ("inserted: " << href << ": " << previousLinks[href]);
|
LOG ("inserted: " << href << ": " << previousLinks[href]);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
MainAttachment::extractLinks (const string &extractedPlainKAZ) {
|
MainAttachment::extractLinks (const string &extractedPlainKAZ) {
|
||||||
|
// plain text => "* name <url>"
|
||||||
DEF_LOG ("Attachment::extractedPlainKAZ", "extractedPlainKAZ: " << extractedPlainKAZ);
|
DEF_LOG ("Attachment::extractedPlainKAZ", "extractedPlainKAZ: " << extractedPlainKAZ);
|
||||||
for (string::size_type startPos (0);
|
for (string::size_type startPos (0);
|
||||||
(startPos = extractedPlainKAZ.find ("http", startPos)) != string::npos;
|
(startPos = extractedPlainKAZ.find ("http", startPos)) != string::npos;
|
||||||
@ -255,24 +334,32 @@ MainAttachment::extractLinks (const string &extractedPlainKAZ) {
|
|||||||
const string href (extractedPlainKAZ.substr (startPos, stopPos-startPos));
|
const string href (extractedPlainKAZ.substr (startPos, stopPos-startPos));
|
||||||
LOG ("plain href: " << href);
|
LOG ("plain href: " << href);
|
||||||
|
|
||||||
if (extractedPlainKAZ [stopPos] && extractedPlainKAZ [stopPos] != '\n')
|
if (extractedPlainKAZ [stopPos])
|
||||||
++stopPos;
|
++stopPos;
|
||||||
|
streamoff stopName = startPos;
|
||||||
startPos = stopPos;
|
startPos = stopPos;
|
||||||
|
|
||||||
// get all href but KAZ_WEB_SITE
|
// get all href but KAZ_WEB_SITE
|
||||||
// the archive link will be skip by filter.sh
|
// the archive link will be skip by filter.sh
|
||||||
if (href == KAZ_WEB_SITE)
|
if (href == KAZ_WEB_SITE)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
string::size_type nextPos = extractedPlainKAZ.find ("http", startPos);
|
// backward find name
|
||||||
string name (extractedPlainKAZ, startPos, (nextPos == string::npos ? extractedPlainKAZ.length () : nextPos) - startPos);
|
string::size_type startName = extractedPlainKAZ.rfind ("* ", stopName);
|
||||||
|
string name;
|
||||||
|
|
||||||
|
if (startName != string::npos) {
|
||||||
|
name = string (extractedPlainKAZ, startName+2, stopName -startName-2);
|
||||||
// skip [> \r\n\t]
|
// skip [> \r\n\t]
|
||||||
nextPos = name.find_first_not_of ("[> \t\r\n]");
|
string::size_type nextPos = name.find_first_not_of ("[>< \t\r\n\"]");
|
||||||
if (nextPos != string::npos)
|
if (nextPos != string::npos)
|
||||||
name.erase (0, nextPos);
|
name.erase (0, nextPos);
|
||||||
// stop before [>\r\n\t]
|
// stop before [>\r\n\t]
|
||||||
nextPos = name.find_first_of ("[>\t\r\n]");
|
nextPos = name.find_first_of ("[\"<]");
|
||||||
if (nextPos != string::npos)
|
if (nextPos != string::npos)
|
||||||
name.erase (nextPos);
|
name.erase (nextPos);
|
||||||
|
}
|
||||||
|
|
||||||
LOG ("plain name: " << name);
|
LOG ("plain name: " << name);
|
||||||
addPrevious (href, name);
|
addPrevious (href, name);
|
||||||
}
|
}
|
||||||
@ -281,6 +368,7 @@ MainAttachment::extractLinks (const string &extractedPlainKAZ) {
|
|||||||
// ================================================================================
|
// ================================================================================
|
||||||
void
|
void
|
||||||
MainAttachment::extractLinks (const vector<string> &liOne) {
|
MainAttachment::extractLinks (const vector<string> &liOne) {
|
||||||
|
// html text => "<li ...><a href="url">name</a>"
|
||||||
DEF_LOG ("Attachment::extractedPlainKAZ", "liOne.size: " << liOne.size ());
|
DEF_LOG ("Attachment::extractedPlainKAZ", "liOne.size: " << liOne.size ());
|
||||||
for (const string &one : liOne) {
|
for (const string &one : liOne) {
|
||||||
if (caseInsensitiveFind (one, CLASS_ONE) == string::npos)
|
if (caseInsensitiveFind (one, CLASS_ONE) == string::npos)
|
||||||
@ -313,29 +401,38 @@ MainAttachment::extractLinks (const vector<string> &liOne) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
MainAttachment::extractPreviousKAZ (ifstream &mbox) {
|
MainAttachment::extractPreviousKAZ (string &extractedPlainKAZ, string &extractedHtmlKAZ, ifstream &mbox, const Attachment &attach) {
|
||||||
DEF_LOG ("MainAttachment::extractPreviousKAZ", "");
|
DEF_LOG ("MainAttachment::extractPreviousKAZ", "attach:" << attach);
|
||||||
string extractedPlainKAZ, extractedHtmlKAZ;
|
if (!(attach.toUpdate || attach.isKazAttachment)) // isKazAttachment => toUpdate
|
||||||
for (const Attachment *attachP : allMarkedPtrs) {
|
return;
|
||||||
if (!attachP->toUpdate || isBase64Encoding ())
|
string textProp = attach.getProp (contentTypeToken, textRegEx);
|
||||||
continue;
|
|
||||||
string textProp = attachP->getProp (contentTypeToken, textRegEx);
|
|
||||||
if (textProp.empty ())
|
if (textProp.empty ())
|
||||||
continue;
|
return;
|
||||||
string content (attachP->getContent (mbox));
|
string content (attach.getContent (mbox));
|
||||||
|
replaceAll (content, "&", "&");
|
||||||
if (textProp == PLAIN) {
|
if (textProp == PLAIN) {
|
||||||
LOG (PLAIN);
|
LOG (PLAIN);
|
||||||
extractedPlainKAZ += attachP->getSection (content, KAZ_PLAIN_START, KAZ_PLAIN_STOP);
|
extractedPlainKAZ += attach.getSection (content, KAZ_PLAIN_START, KAZ_PLAIN_STOP);
|
||||||
}
|
}
|
||||||
if (textProp == HTML) {
|
if (textProp == HTML) {
|
||||||
LOG (HTML);
|
LOG (HTML);
|
||||||
string section = attachP->getSection (content, KAZ_HTML_START, KAZ_HTML_STOP);
|
string section = attach.getSection (content, KAZ_HTML_START, KAZ_HTML_STOP);
|
||||||
section += attachP->getSection (content, KAZ_PLAIN_START, KAZ_PLAIN_STOP);
|
section += attach.getSection (content, KAZ_PLAIN_START, KAZ_PLAIN_STOP);
|
||||||
// update href from HTML attachments
|
// update href from HTML attachments
|
||||||
replaceAll (section, "&", "&");
|
|
||||||
extractedHtmlKAZ += section;
|
extractedHtmlKAZ += section;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
MainAttachment::extractPreviousKAZ (ifstream &mbox) {
|
||||||
|
DEF_LOG ("MainAttachment::extractPreviousKAZ", "");
|
||||||
|
string extractedPlainKAZ, extractedHtmlKAZ;
|
||||||
|
if (boundary.empty ())
|
||||||
|
extractPreviousKAZ (extractedPlainKAZ, extractedHtmlKAZ, mbox, *this);
|
||||||
|
else
|
||||||
|
for (const Attachment *attachP : allMarkedPtrs)
|
||||||
|
extractPreviousKAZ (extractedPlainKAZ, extractedHtmlKAZ, mbox, *attachP);
|
||||||
|
|
||||||
LOG ("extractedPlainKAZ: "<< extractedPlainKAZ);
|
LOG ("extractedPlainKAZ: "<< extractedPlainKAZ);
|
||||||
extractLinks (extractedPlainKAZ);
|
extractLinks (extractedPlainKAZ);
|
||||||
|
|
||||||
@ -352,17 +449,59 @@ MainAttachment::extractPreviousKAZ (ifstream &mbox) {
|
|||||||
|
|
||||||
void
|
void
|
||||||
MainAttachment::removePreviousArchive () {
|
MainAttachment::removePreviousArchive () {
|
||||||
|
DEF_LOG ("MainAttachment::removePreviousArchive", "");
|
||||||
vector<string> toRemove;
|
vector<string> toRemove;
|
||||||
for (map <string, string>::const_iterator it = previousLinks.begin (); it != previousLinks.end (); ++it)
|
for (map <string, string>::const_iterator it = previousLinks.begin (); it != previousLinks.end (); ++it) {
|
||||||
if (it->first.find ("&l=/") != string::npos)
|
const string key (it->first);
|
||||||
toRemove.push_back (it->first);
|
if (regex_match (key, archiveURLRegex))
|
||||||
|
toRemove.push_back (key);
|
||||||
|
}
|
||||||
for (string old : toRemove)
|
for (string old : toRemove)
|
||||||
previousLinks.erase (old);
|
previousLinks.erase (old);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ================================================================================
|
||||||
|
void MainAttachment::rewriteHeaders (ifstream &mbox, ofstream &outbox, const HeaderType &headerType) {
|
||||||
|
DEF_LOG ("MainAttachment::rewriteHeaders", "headerType: " << headerType);
|
||||||
|
if (SAME == headerType) {
|
||||||
|
copy (mbox, outbox, 0, contentPos);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
string mime (getMime (mbox));
|
||||||
|
string::size_type startPos = (0);
|
||||||
|
for (string token : {string ("content-transfer-encoding"), Attachment::contentTypeToken}) {
|
||||||
|
startPos = caseInsensitiveFind (mime, token);
|
||||||
|
for (string::size_type stopPos (startPos);
|
||||||
|
(stopPos = mime.find ("\n", stopPos)) != string::npos;
|
||||||
|
) {
|
||||||
|
if (string (" \t").find (mime [stopPos+1]) == string::npos) {
|
||||||
|
mime.erase (startPos, stopPos-startPos);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
string contentType (KAZ_EMPTY_TEXT_PLAIN);
|
||||||
|
switch (headerType) {
|
||||||
|
case SAME: /* no way */;
|
||||||
|
case MAIN_PLAIN: contentType = KAZ_EMPTY_TEXT_PLAIN; break;
|
||||||
|
case ATTACH_HTML: contentType = KAZ_ATTACHMENT_TEXT_HTML; break;
|
||||||
|
case MULTI:
|
||||||
|
boundary = "__KAZ__"+boundaryGen (40);
|
||||||
|
contentType = "Content-Type: multipart/mixed; boundary=\""+boundary+"\"";
|
||||||
|
boundary = "--"+boundary+"--";
|
||||||
|
boundaryMiddleSize = boundary.length () - 2;
|
||||||
|
}
|
||||||
|
if (startPos >= mime.length ())
|
||||||
|
startPos = mime.length ()-1;
|
||||||
|
mime.insert (startPos, contentType);
|
||||||
|
outbox << mime << flush;
|
||||||
|
}
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
MainAttachment::MainAttachment (ifstream &mbox)
|
MainAttachment::MainAttachment (ifstream &mbox)
|
||||||
: Attachment (mbox, initTmpLevel (), 0, initTmpPos ()) {
|
: Attachment (mbox, initTmpLevel (), 0, initTmpPos ()),
|
||||||
|
emptyEMail (false),
|
||||||
|
previousKazAttachment (false) {
|
||||||
DEF_LOG ("MainAttachment::MainAttachment", "");
|
DEF_LOG ("MainAttachment::MainAttachment", "");
|
||||||
string line;
|
string line;
|
||||||
for (; getline (mbox, line); )
|
for (; getline (mbox, line); )
|
||||||
@ -376,7 +515,8 @@ MainAttachment::markSignificant (const streamoff &minAttachSize, ifstream &mbox)
|
|||||||
DEF_LOG ("MainAttachment::markSignificant", "minAttachSize: " << minAttachSize);
|
DEF_LOG ("MainAttachment::markSignificant", "minAttachSize: " << minAttachSize);
|
||||||
bool plainMarked (false), htmlMarked (false);
|
bool plainMarked (false), htmlMarked (false);
|
||||||
markDisclaim (plainMarked, htmlMarked);
|
markDisclaim (plainMarked, htmlMarked);
|
||||||
Attachment::markSignificant ("", minAttachSize, mbox, allMarkedPtrs);
|
emptyEMail = ! (plainMarked || htmlMarked);
|
||||||
|
Attachment::markSignificant ("", isSigned, minAttachSize, mbox, allMarkedPtrs);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
@ -419,7 +559,7 @@ MainAttachment::extract (ifstream &mbox, const SizeArg &minSize) const {
|
|||||||
int attachCount (0);
|
int attachCount (0);
|
||||||
string dirName, mediaName;
|
string dirName, mediaName;
|
||||||
for (Attachment *attachP : allMarkedPtrs) {
|
for (Attachment *attachP : allMarkedPtrs) {
|
||||||
if (!attachP->toExtract)
|
if (attachP->isSigned || attachP->isKazAttachment || !attachP->toExtract)
|
||||||
continue;
|
continue;
|
||||||
newPjEntry (attachCount, attachP->getContentType (), attachP->getAttachName (), dirName, mediaName);
|
newPjEntry (attachCount, attachP->getContentType (), attachP->getAttachName (), dirName, mediaName);
|
||||||
++attachCount;
|
++attachCount;
|
||||||
@ -470,7 +610,7 @@ MainAttachment::extract (ifstream &mbox, const SizeArg &minSize) const {
|
|||||||
cout << dirName << endl;
|
cout << dirName << endl;
|
||||||
}
|
}
|
||||||
for (Attachment *attachP : allMarkedPtrs) {
|
for (Attachment *attachP : allMarkedPtrs) {
|
||||||
if (!attachP->embeddedData.size ())
|
if (attachP->isSigned || !attachP->embeddedData.size ())
|
||||||
continue;
|
continue;
|
||||||
string content = attachP->getContent (mbox);
|
string content = attachP->getContent (mbox);
|
||||||
vector<string> imgs;
|
vector<string> imgs;
|
||||||
@ -493,16 +633,25 @@ MainAttachment::extract (ifstream &mbox, const SizeArg &minSize) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
|
/*!
|
||||||
|
Régle à appliquer dans le cas où Kaz ajoute son cartouche et que le corps principale n'est pas multipart :
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr><th>src</th><th>FOOTER</th><th>BOTH</th><th>ATTCH</th></tr>
|
||||||
|
<tr><th>text/plain</th><td>OK</td><td>mute multi</td><td>mute multi</td></tr>
|
||||||
|
<tr><th>empty mail</th><td>mute plain</td><td>mute multi</td><td>mute html</td></tr>
|
||||||
|
</table>
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
MainAttachment::substitute (ifstream &mbox, ofstream &outbox, const SizeArg &minSize) {
|
MainAttachment::substitute (ifstream &mbox, ofstream &outbox, const SizeArg &minSize, AttachMode attachMode) {
|
||||||
DEF_LOG ("MainAttachment::substitute", "minSize: " << minSize);
|
DEF_LOG ("MainAttachment::substitute", "minSize: " << minSize << " AttachMode: " << attachMode);
|
||||||
|
|
||||||
// preparation
|
// preparation
|
||||||
extractPreviousKAZ (mbox);
|
extractPreviousKAZ (mbox);
|
||||||
removePreviousArchive ();
|
removePreviousArchive ();
|
||||||
map<const string, const string> translateHtml;
|
map<const string, const string> translateHtml;
|
||||||
for (Attachment *attachP : allMarkedPtrs)
|
for (Attachment *attachP : allMarkedPtrs)
|
||||||
if (attachP->toExtract) {
|
if (!attachP->isSigned && attachP->toExtract && !attachP->isKazAttachment) {
|
||||||
readDownloadUrl (attachP->downloadUrl);
|
readDownloadUrl (attachP->downloadUrl);
|
||||||
if (attachP->downloadUrl.empty ()) {
|
if (attachP->downloadUrl.empty ()) {
|
||||||
LOG ("no change");
|
LOG ("no change");
|
||||||
@ -511,28 +660,81 @@ MainAttachment::substitute (ifstream &mbox, ofstream &outbox, const SizeArg &min
|
|||||||
}
|
}
|
||||||
if (attachP->cid.length ()) {
|
if (attachP->cid.length ()) {
|
||||||
string tmp (attachP->downloadUrl);
|
string tmp (attachP->downloadUrl);
|
||||||
replaceAll (tmp, "&", "&");
|
//replaceAll (tmp, "&", "&");
|
||||||
translateHtml.insert (pair<const string, const string> (CID+attachP->cid, tmp));
|
translateHtml.insert (pair<const string, const string> (CID+attachP->cid, tmp));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (Attachment *attachP : allMarkedPtrs) {
|
for (Attachment *attachP : allMarkedPtrs) {
|
||||||
if (!attachP->embeddedData.size ())
|
if (attachP->isSigned || !attachP->embeddedData.size ())
|
||||||
continue;
|
continue;
|
||||||
for (EmbeddedData &embedded : attachP->embeddedData)
|
for (EmbeddedData &embedded : attachP->embeddedData)
|
||||||
readDownloadUrl (embedded.downloadUrl);
|
readDownloadUrl (embedded.downloadUrl);
|
||||||
|
// XXX test empty ?
|
||||||
}
|
}
|
||||||
readArchiveUrl ();
|
readArchiveUrl ();
|
||||||
|
removePreviousArchive ();
|
||||||
string plainDisclaim, htmlDisclaim;
|
string plainDisclaim, htmlDisclaim;
|
||||||
getDisclaim (plainDisclaim, htmlDisclaim);
|
getDisclaim (plainDisclaim, htmlDisclaim);
|
||||||
|
|
||||||
|
HeaderType headerType (SAME);
|
||||||
// copy email
|
// copy email
|
||||||
streamoff curPos = 0;
|
if (!boundary.size () && plainDisclaim.size ())
|
||||||
|
switch (attachMode) {
|
||||||
|
case NONE: LOG_BUG (true, /* */, "eMailShrinker: bug M12: nothing to do"); break;
|
||||||
|
case FOOTER: headerType = (emptyEMail ? MAIN_PLAIN : SAME); break;
|
||||||
|
case BOTH: headerType = MULTI; break;
|
||||||
|
case ATTACHMENT: headerType = ATTACH_HTML; break;
|
||||||
|
}
|
||||||
|
rewriteHeaders (mbox, outbox, headerType);
|
||||||
|
streamoff curPos = contentPos;
|
||||||
|
|
||||||
|
if (MAIN_PLAIN == headerType) {
|
||||||
|
LOG ("Replace old content with plain");
|
||||||
|
string content (plainDisclaim);
|
||||||
|
base64Encode (content);
|
||||||
|
outbox << content << endl;
|
||||||
|
outbox.flush ();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ATTACH_HTML == headerType) {
|
||||||
|
LOG ("Replace old content with html");
|
||||||
|
string content (plainDisclaim);
|
||||||
|
base64Encode (content);
|
||||||
|
outbox << content << endl;
|
||||||
|
outbox.flush ();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (plainDisclaim.size () && emptyEMail && (attachMode & FOOTER)) {
|
||||||
|
// case : multi
|
||||||
|
LOG ("Force main text");
|
||||||
|
cerr << "eMailShrinker: force main text" << endl;
|
||||||
|
string content (plainDisclaim);
|
||||||
|
base64Encode (content);
|
||||||
|
outbox << boundary.substr (0, boundary.length () -2) << endl
|
||||||
|
<< KAZ_EMPTY_TEXT_PLAIN << endl
|
||||||
|
<< content << endl;
|
||||||
|
outbox.flush ();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (MULTI == headerType) {
|
||||||
|
LOG ("New boundary");
|
||||||
|
map<string, string>::const_iterator it (env.find (contentTypeToken));
|
||||||
|
LOG_BUG (it == env.end (), /* */, "eMailShrinker: bug M13: no content-type");
|
||||||
|
outbox << boundary.substr (0, boundary.length () -2) << endl
|
||||||
|
<< Attachment::contentTypeToken << ": " << it->second << endl;
|
||||||
|
}
|
||||||
|
|
||||||
for (Attachment *attachP : allMarkedPtrs) {
|
for (Attachment *attachP : allMarkedPtrs) {
|
||||||
copy (mbox, outbox, curPos, attachP->beginInParent);
|
copy (mbox, outbox, curPos, attachP->beginInParent);
|
||||||
|
|
||||||
LOG_BUG (attachP->toUpdate && attachP->toExtract, /**/, "eMailShrinker: bug M5: update and extract. pos: " << attachP->beginPos);
|
LOG_BUG (attachP->toUpdate && attachP->toExtract, /**/, "eMailShrinker: bug M5: update and extract. pos: " << attachP->beginPos);
|
||||||
|
|
||||||
if (attachP->toExtract) {
|
if (attachP->isSigned) {
|
||||||
LOG ("skip Extracted");
|
LOG ("don't change signed content");
|
||||||
|
copy (mbox, outbox, attachP->beginInParent, attachP->endPos);
|
||||||
|
|
||||||
|
} else if (attachP->toExtract || attachP->isKazAttachment) {
|
||||||
|
LOG ("skip Extracted or previous attachments");
|
||||||
|
|
||||||
} else if (attachP->toUpdate) {
|
} else if (attachP->toUpdate) {
|
||||||
string textProp = attachP->getProp (contentTypeToken, textRegEx);
|
string textProp = attachP->getProp (contentTypeToken, textRegEx);
|
||||||
@ -543,6 +745,7 @@ MainAttachment::substitute (ifstream &mbox, ofstream &outbox, const SizeArg &min
|
|||||||
LOG_BUG (isPlain && isHtml, /**/, "eMailShrinker: bug M6: plain and html: " << attachP->getContentType ());
|
LOG_BUG (isPlain && isHtml, /**/, "eMailShrinker: bug M6: plain and html: " << attachP->getContentType ());
|
||||||
LOG_BUG (! (isPlain || isHtml), /**/, "eMailShrinker: bug M7: not plain or html: " << attachP->getContentType ());
|
LOG_BUG (! (isPlain || isHtml), /**/, "eMailShrinker: bug M7: not plain or html: " << attachP->getContentType ());
|
||||||
LOG ("toUpdate: isPlain: " << isPlain << " isHtml: " << isHtml << " isDisclaimer: " << isDisclaimer);
|
LOG ("toUpdate: isPlain: " << isPlain << " isHtml: " << isHtml << " isDisclaimer: " << isDisclaimer);
|
||||||
|
if (attachP != this)
|
||||||
copy (mbox, outbox, attachP->beginInParent, attachP->contentPos);
|
copy (mbox, outbox, attachP->beginInParent, attachP->contentPos);
|
||||||
|
|
||||||
string content = attachP->getContent (mbox);
|
string content = attachP->getContent (mbox);
|
||||||
@ -573,14 +776,13 @@ MainAttachment::substitute (ifstream &mbox, ofstream &outbox, const SizeArg &min
|
|||||||
}
|
}
|
||||||
removeSection (content, KAZ_HTML_START, KAZ_HTML_STOP);
|
removeSection (content, KAZ_HTML_START, KAZ_HTML_STOP);
|
||||||
removeSection (content, KAZ_PLAIN_START, KAZ_PLAIN_STOP);
|
removeSection (content, KAZ_PLAIN_START, KAZ_PLAIN_STOP);
|
||||||
// XXX case insensitive ??
|
if (caseInsensitiveFind (content, CID) != string::npos)
|
||||||
if (content.find (CID) != string::npos)
|
|
||||||
replaceAll (content, translateHtml);
|
replaceAll (content, translateHtml);
|
||||||
attachP->replaceEmbedded (content);
|
attachP->replaceEmbedded (content);
|
||||||
}
|
}
|
||||||
if (isPlain)
|
if (isPlain)
|
||||||
removeSection (content, KAZ_PLAIN_START, KAZ_PLAIN_STOP);
|
removeSection (content, KAZ_PLAIN_START, KAZ_PLAIN_STOP);
|
||||||
if (isDisclaimer) {
|
if (isDisclaimer && (attachMode & FOOTER)) {
|
||||||
if (isHtml) {
|
if (isHtml) {
|
||||||
for (string endTag : {BODY_END, HTML_END}) {
|
for (string endTag : {BODY_END, HTML_END}) {
|
||||||
LOG ("try tag: " << endTag);
|
LOG ("try tag: " << endTag);
|
||||||
@ -598,12 +800,31 @@ MainAttachment::substitute (ifstream &mbox, ofstream &outbox, const SizeArg &min
|
|||||||
}
|
}
|
||||||
attachP->println (outbox, content);
|
attachP->println (outbox, content);
|
||||||
} else {
|
} else {
|
||||||
LOG_BUG (true, continue, "eMailShrinker: bug M8: can't change" << *attachP);
|
LOG_BUG (true, continue, "eMailShrinker: upload has failed, so can't change" << *attachP);
|
||||||
}
|
}
|
||||||
outbox.flush ();
|
outbox.flush ();
|
||||||
curPos = attachP->endPos;
|
curPos = attachP->endPos;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (plainDisclaim.size () && (attachMode & ATTACHMENT)) {
|
||||||
|
LOG ("Add kaz attachment");
|
||||||
|
cerr << "eMailShrinker: force attachment" << endl;
|
||||||
|
if (subAttachements.size ()) {
|
||||||
|
streamoff lastPos = subAttachements.back ().endPos;
|
||||||
|
copy (mbox, outbox, curPos, lastPos);
|
||||||
|
curPos = lastPos;
|
||||||
|
}
|
||||||
|
string content (KAZ_HTML_CONTENT+htmlDisclaim+BODY_END+HTML_END);
|
||||||
|
base64Encode (content);
|
||||||
|
|
||||||
|
outbox << boundary.substr (0, boundary.length () -2) << endl
|
||||||
|
<< KAZ_ATTACHMENT_TEXT_HTML << endl
|
||||||
|
<< content << endl;
|
||||||
|
outbox.flush ();
|
||||||
|
}
|
||||||
copy (mbox, outbox, curPos, endPos);
|
copy (mbox, outbox, curPos, endPos);
|
||||||
|
if (MULTI == headerType)
|
||||||
|
outbox << boundary.substr (0, boundary.length ()) << endl;
|
||||||
outbox.close ();
|
outbox.close ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,7 +32,10 @@
|
|||||||
// knowledge of the CeCILL-B license and that you accept its terms. //
|
// knowledge of the CeCILL-B license and that you accept its terms. //
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#define LAST_VERSION "2.0 2022-02-08 eMailShrinker"
|
#include "version.hpp"
|
||||||
|
const std::string kaz::LAST_VERSION_NUM ("2.17");
|
||||||
|
const std::string kaz::LAST_VERSION_DATE ("2023-04-23");
|
||||||
|
const std::string kaz::LAST_VERSION (LAST_VERSION_NUM+" "+LAST_VERSION_DATE+" eMailShrinker");
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
@ -66,8 +69,8 @@ usage (const string &msg = "", const bool &hidden = false) {
|
|||||||
cout << endl
|
cout << endl
|
||||||
<< "Usage: " << endl
|
<< "Usage: " << endl
|
||||||
<< " A) " << prog << " -u mbox > url-list" << endl
|
<< " A) " << prog << " -u mbox > url-list" << endl
|
||||||
<< " B) " << prog << " [-s size] [-d dirName}] mbox > file-list" << endl
|
<< " B) " << prog << " [-s size] [-d dirName] mbox > file-list" << endl
|
||||||
<< " C) " << prog << " [-s size] mbox altered-mbox < url-list" << endl
|
<< " C) " << prog << " [-s size] [-m {Footer|Attachment|Both}] mbox altered-mbox < url-list" << endl
|
||||||
<< endl << " filter attachments" << endl << endl
|
<< endl << " filter attachments" << endl << endl
|
||||||
<< " A: list previous embded url need to be refresh (no added option)" << endl
|
<< " A: list previous embded url need to be refresh (no added option)" << endl
|
||||||
<< " => downloadURL list" << endl
|
<< " => downloadURL list" << endl
|
||||||
@ -103,20 +106,21 @@ static const char *const inputFileC = inputFile.c_str ();
|
|||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char** argv) {
|
main (int argc, char** argv) {
|
||||||
// XXX debug before parse options
|
// uncomment next line in case of debug parse options
|
||||||
// Log::debug = true;
|
// Log::debug = true;
|
||||||
DEF_LOG ("main:", "");
|
DEF_LOG ("main:", "");
|
||||||
prog = argv [0];
|
prog = argv [0];
|
||||||
bool
|
bool
|
||||||
debugFlag (false),
|
|
||||||
helpFlag (false),
|
helpFlag (false),
|
||||||
versionFlag (false),
|
versionFlag (false),
|
||||||
updateListFlag (false),
|
updateListFlag (false),
|
||||||
useTheForceLuke (false),
|
useTheForceLuke (false),
|
||||||
listFlag (false);
|
listFlag (false),
|
||||||
|
debugFlag (false);
|
||||||
string inputName, outputName;
|
string inputName, outputName;
|
||||||
bfs::path extractDir (bfs::temp_directory_path ());
|
bfs::path extractDir (bfs::temp_directory_path ());
|
||||||
SizeArg minAttachSize ("48 Ki");
|
SizeArg minAttachSize ("48 Ki");
|
||||||
|
AttachMode attachMode (FOOTER);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
mainDescription.add_options ()
|
mainDescription.add_options ()
|
||||||
@ -125,6 +129,7 @@ main (int argc, char** argv) {
|
|||||||
("size,s", value<SizeArg> (&minAttachSize)->default_value (minAttachSize), "minimum size for extration")
|
("size,s", value<SizeArg> (&minAttachSize)->default_value (minAttachSize), "minimum size for extration")
|
||||||
("updateList,u", bool_switch (&updateListFlag), "list URL need refresh")
|
("updateList,u", bool_switch (&updateListFlag), "list URL need refresh")
|
||||||
("extractDir,d", value<bfs::path> (&extractDir)->default_value (extractDir), "set tmp directory name for extraction")
|
("extractDir,d", value<bfs::path> (&extractDir)->default_value (extractDir), "set tmp directory name for extraction")
|
||||||
|
("mode,m", boost::program_options::value<AttachMode> (&attachMode)->default_value (attachMode), "set attachment mode")
|
||||||
;
|
;
|
||||||
|
|
||||||
hide.add_options ()
|
hide.add_options ()
|
||||||
@ -188,10 +193,10 @@ main (int argc, char** argv) {
|
|||||||
MainAttachment attachment (mbox);
|
MainAttachment attachment (mbox);
|
||||||
mbox.close ();
|
mbox.close ();
|
||||||
|
|
||||||
if (attachment.getBoundary ().empty ()) {
|
// if (attachment.getBoundary ().empty ()) {
|
||||||
cerr << "no attachment" << endl;
|
// cerr << "no attachment" << endl;
|
||||||
return 1;
|
// return 1;
|
||||||
}
|
// }
|
||||||
// parse structure
|
// parse structure
|
||||||
mbox.open (inputName);
|
mbox.open (inputName);
|
||||||
attachment.markSignificant (minAttachSize, mbox);
|
attachment.markSignificant (minAttachSize, mbox);
|
||||||
@ -219,9 +224,13 @@ main (int argc, char** argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// case substitute
|
// case substitute
|
||||||
|
if (attachMode == NONE) {
|
||||||
|
cerr << endl << prog << ": attachMode can't be NONE (forced FOOTER mode)" << endl;
|
||||||
|
attachMode = FOOTER;
|
||||||
|
}
|
||||||
mbox.open (inputName);
|
mbox.open (inputName);
|
||||||
ofstream outbox (outputName);
|
ofstream outbox (outputName);
|
||||||
attachment.substitute (mbox, outbox, minAttachSize);
|
attachment.substitute (mbox, outbox, minAttachSize, attachMode);
|
||||||
showTime ("Substitution");
|
showTime ("Substitution");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
// knowledge of the CeCILL-B license and that you accept its terms. //
|
// knowledge of the CeCILL-B license and that you accept its terms. //
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#define LAST_VERSION "1.0 2021-02-21 jirafeauAPI"
|
#define LAST_VERSION "1.1 2022-10-30 jirafeauAPI"
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
@ -106,7 +106,7 @@ static const char *const inputFileC = inputFile.c_str ();
|
|||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char** argv) {
|
main (int argc, char** argv) {
|
||||||
// XXX debug before parse options
|
// uncomment next line in case of debug parse options
|
||||||
// Log::debug = true;
|
// Log::debug = true;
|
||||||
DEF_LOG ("main:", "");
|
DEF_LOG ("main:", "");
|
||||||
prog = argv [0];
|
prog = argv [0];
|
||||||
@ -122,8 +122,8 @@ main (int argc, char** argv) {
|
|||||||
contentType,
|
contentType,
|
||||||
attachName,
|
attachName,
|
||||||
urlBase ("http://file.kaz.bzh"),
|
urlBase ("http://file.kaz.bzh"),
|
||||||
apiPage ("/script.php"),
|
uploadPage ("/a.php"),
|
||||||
downloadPage ("/f.php"),
|
updatePage ("/a.php"),
|
||||||
minimumAvailability ("month"),
|
minimumAvailability ("month"),
|
||||||
proxy;
|
proxy;
|
||||||
|
|
||||||
@ -144,8 +144,8 @@ main (int argc, char** argv) {
|
|||||||
("useTheForceLuke", bool_switch (&useTheForceLuke), "display hidded options")
|
("useTheForceLuke", bool_switch (&useTheForceLuke), "display hidded options")
|
||||||
("debug,g", bool_switch (&debugFlag), "debug mode")
|
("debug,g", bool_switch (&debugFlag), "debug mode")
|
||||||
("proxy,p", value<string> (&proxy)->default_value (proxy), "set proxy (proxy-host.org:8080)")
|
("proxy,p", value<string> (&proxy)->default_value (proxy), "set proxy (proxy-host.org:8080)")
|
||||||
("uploadPage,u", value<string> (&apiPage)->default_value (apiPage), "upload page")
|
("uploadPage,u", value<string> (&uploadPage)->default_value (uploadPage), "upload page")
|
||||||
("downloadPage,d", value<string> (&downloadPage)->default_value (downloadPage), "download page")
|
("updatePage,v", value<string> (&updatePage)->default_value (updatePage), "update page")
|
||||||
;
|
;
|
||||||
|
|
||||||
options_description cmd ("All options");
|
options_description cmd ("All options");
|
||||||
@ -220,8 +220,8 @@ main (int argc, char** argv) {
|
|||||||
|
|
||||||
switch (jirCmd) {
|
switch (jirCmd) {
|
||||||
case SEND: {
|
case SEND: {
|
||||||
LOG ("SEND: " << (urlBase+apiPage));
|
LOG ("SEND: " << (urlBase+uploadPage));
|
||||||
curl_easy_setopt (easyhandle, CURLOPT_URL, (urlBase+apiPage).c_str ());
|
curl_easy_setopt (easyhandle, CURLOPT_URL, (urlBase+uploadPage).c_str ());
|
||||||
|
|
||||||
LOG ("maxUploadSize: " << maxUploadSize);
|
LOG ("maxUploadSize: " << maxUploadSize);
|
||||||
long uploadsize = (size_t) maxUploadSize;
|
long uploadsize = (size_t) maxUploadSize;
|
||||||
@ -264,8 +264,8 @@ main (int argc, char** argv) {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case UPDATE: {
|
case UPDATE: {
|
||||||
LOG ("UPDATE: " << (urlBase+downloadPage));
|
LOG ("UPDATE: " << (urlBase+updatePage));
|
||||||
curl_easy_setopt (easyhandle, CURLOPT_URL, (urlBase+downloadPage).c_str ());
|
curl_easy_setopt (easyhandle, CURLOPT_URL, (urlBase+updatePage).c_str ());
|
||||||
|
|
||||||
LOG ("h: " << inputFileName);
|
LOG ("h: " << inputFileName);
|
||||||
part = curl_mime_addpart (multipart);
|
part = curl_mime_addpart (multipart);
|
||||||
@ -281,12 +281,13 @@ main (int argc, char** argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
curl_easy_setopt (easyhandle, CURLOPT_MIMEPOST, multipart);
|
curl_easy_setopt (easyhandle, CURLOPT_MIMEPOST, multipart);
|
||||||
curl_easy_perform (easyhandle);
|
CURLcode res (curl_easy_perform (easyhandle));
|
||||||
curl_easy_cleanup (easyhandle);
|
curl_easy_cleanup (easyhandle);
|
||||||
cout << readBuffer << endl;
|
cout << readBuffer << endl;
|
||||||
|
|
||||||
showTime ("Upload");
|
showTime ("Upload");
|
||||||
|
if (res != CURLE_OK)
|
||||||
|
cerr << prog << " failed: " << curl_easy_strerror (res) << endl;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,6 +65,14 @@ const string kaz::availableURLChars =
|
|||||||
"abcdefghijklmnopqrstuvwxyz"
|
"abcdefghijklmnopqrstuvwxyz"
|
||||||
"~";
|
"~";
|
||||||
|
|
||||||
|
const regex kaz::encodedWordRegex ("\\s*=\\?" // flag begin
|
||||||
|
"([0-9A-Za-z!#$%&'+^_`{}~-]+)" // charset
|
||||||
|
"\\?" // flag sep
|
||||||
|
"([QqBb])" // quoted our base64
|
||||||
|
"\\?" // flag sep
|
||||||
|
"([^ ?]+)" // encoded string
|
||||||
|
"\\?=\\s*"); // flag end
|
||||||
|
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
uint16_t
|
uint16_t
|
||||||
@ -167,6 +175,19 @@ kaz::caseInsensitiveRFind (const string& s, const string& pattern, const string:
|
|||||||
return s.rend () - it - pattern.length ();
|
return s.rend () - it - pattern.length ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string
|
||||||
|
kaz::boundaryGen (const int &size) {
|
||||||
|
static const char alphanum[] =
|
||||||
|
"0123456789"
|
||||||
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||||
|
"abcdefghijklmnopqrstuvwxyz";
|
||||||
|
string result;
|
||||||
|
result.reserve (size);
|
||||||
|
for (int i = 0; i < size; ++i)
|
||||||
|
result += alphanum[rand() % (sizeof (alphanum) - 1)];
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
template<char delim>
|
template<char delim>
|
||||||
void
|
void
|
||||||
@ -186,13 +207,13 @@ kaz::quotedDecode (string &content) {
|
|||||||
}
|
}
|
||||||
if (p+1 < content.end () && *(p+1) == '\n') {
|
if (p+1 < content.end () && *(p+1) == '\n') {
|
||||||
|
|
||||||
LOG_BUG (q == content.begin (), ++p;continue, "kazMisc::quotedDecode bug: bad quoted-printable format. (start with '=', content: " << content << ")");
|
LOG_BUG (q == content.begin (), ++p;continue, "kazMisc::quotedDecode bug: bad quoted-printable format. (start with '=', delim: " << int (delim) << " content: " << content << ")");
|
||||||
++p;
|
++p;
|
||||||
--q;
|
--q;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG_BUG (p+3 > content.end () || !isxdigit (p[1]) || !isxdigit (p[2]), return, "kazMisc::quotedDecode bug: bad quoted-printable format. (content: " << content << ")");
|
LOG_BUG (p+3 > content.end () || !isxdigit (p[1]) || !isxdigit (p[2]), return, "kazMisc::quotedDecode bug: bad quoted-printable format. (delim: " << int (delim) << " content: " << content << ")");
|
||||||
*q = (char) ((getHexaVal (p[1]) << 4) + getHexaVal (p[2]));
|
*q = (char) ((getHexaVal (p[1]) << 4) + getHexaVal (p[2]));
|
||||||
p += 2;
|
p += 2;
|
||||||
}
|
}
|
||||||
@ -259,17 +280,23 @@ kaz::base64Decode (string &content) {
|
|||||||
LOG ("len: " << len);
|
LOG ("len: " << len);
|
||||||
unsigned char buff[4];
|
unsigned char buff[4];
|
||||||
int idx = 0;
|
int idx = 0;
|
||||||
string::iterator p (content.begin ()), q (p);
|
string::iterator p (content.begin ()), q (p), lastOK (p);
|
||||||
for (;
|
for (;
|
||||||
p < content.end ();
|
p < content.end ();
|
||||||
++p) {
|
++p) {
|
||||||
char c = *p;
|
char c = *p;
|
||||||
if (c == '=')
|
if (c == '=')
|
||||||
break;
|
break;
|
||||||
if (c == '\n')
|
if (c == '\n') {
|
||||||
|
lastOK = p;
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
LOG_BUG (!isBase64 (c), return, "kazMisc::base64Decode bug: bad base64 format. (content: " << content << ")");
|
if (!isBase64 (c)) {
|
||||||
|
content.resize (lastOK-content.begin ());
|
||||||
|
LOG ("kazMisc::base64Decode bug: bad base64 format. (content: " << content << ")");
|
||||||
|
return;
|
||||||
|
}
|
||||||
buff [idx] = getBase64Val (c);
|
buff [idx] = getBase64Val (c);
|
||||||
if (++idx != 4)
|
if (++idx != 4)
|
||||||
continue;
|
continue;
|
||||||
@ -284,8 +311,7 @@ kaz::base64Decode (string &content) {
|
|||||||
buff [j] = 0;
|
buff [j] = 0;
|
||||||
*q = buff [0] << 2 | (buff [1] & 0x30) >> 4;
|
*q = buff [0] << 2 | (buff [1] & 0x30) >> 4;
|
||||||
++q;
|
++q;
|
||||||
--idx;
|
if (idx > 2) {
|
||||||
if (idx) {
|
|
||||||
*q = buff [1] << 4 | (buff [2] & 0x3c) >> 2;
|
*q = buff [1] << 4 | (buff [2] & 0x3c) >> 2;
|
||||||
++q;
|
++q;
|
||||||
}
|
}
|
||||||
@ -364,65 +390,66 @@ kaz::iso2utf (string &content) {
|
|||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
void
|
void
|
||||||
kaz::encodedWord (string &content) {
|
kaz::encodedWordDecode (string &content) {
|
||||||
// rfc2047
|
// rfc2047
|
||||||
DEF_LOG ("kaz::extendedWord", "content: " << content);
|
DEF_LOG ("kaz::encodedWordDecode", "content: " << content);
|
||||||
string::size_type charsetPos = content.find ("=?");
|
string::size_type charsetPos = content.find ("=?");
|
||||||
if (charsetPos == string::npos)
|
if (charsetPos == string::npos)
|
||||||
return;
|
return;
|
||||||
LOG ("charsetPos: " << charsetPos);
|
LOG ("charsetPos: " << charsetPos);
|
||||||
|
|
||||||
LOG_BUG (charsetPos != 0, return, "kazMisc::extendedWord bug: =? not at begin pos. (content: " << content << ")");
|
|
||||||
string result;
|
string result;
|
||||||
for ( ;
|
auto pos (0);
|
||||||
(charsetPos = content.find ("=?", charsetPos)) != string::npos;
|
sregex_iterator ewItEnd;
|
||||||
) {
|
for (sregex_iterator ewIt (content.begin (), content.end (), encodedWordRegex);
|
||||||
string::size_type modePos = content.find ("?", charsetPos+2);
|
ewIt != ewItEnd;
|
||||||
|
++ewIt) {
|
||||||
|
smatch m = *ewIt;
|
||||||
|
if (pos != m.position ()) {
|
||||||
|
result += content.substr (pos, m.position () - pos);
|
||||||
|
LOG ("stantad " << content.substr (pos, m.position () - pos));
|
||||||
|
}
|
||||||
|
string encoded (m[3]);
|
||||||
|
replace (encoded.begin (), encoded.end (), '_', ' ');
|
||||||
|
|
||||||
LOG_BUG (modePos == string::npos, return, "kazMisc::extendedWord bug: no end chartset. (content: " << content << ")");
|
LOG ("charset: " << m[1] << " mode: " << m[2] << " string: " << encoded);
|
||||||
string::size_type contentPos = content.find ("?", modePos+1);
|
|
||||||
|
|
||||||
LOG_BUG (contentPos != modePos+2, return, "kazMisc::extendedWord bug: no end chartset. (content: " << content << ")");
|
switch (m[2].str ()[0]) {
|
||||||
string::size_type endPos = content.find ("?=", contentPos+1);
|
|
||||||
|
|
||||||
LOG_BUG (endPos == string::npos, return, "kazMisc::extendedWord bug: no end chartset. (content: " << content << ")");
|
|
||||||
string tmp (content.substr (contentPos+1, endPos-contentPos-1));
|
|
||||||
switch (content [modePos+1]) {
|
|
||||||
case 'B':
|
case 'B':
|
||||||
case 'b':
|
case 'b':
|
||||||
base64Decode (tmp);
|
base64Decode (encoded);
|
||||||
break;
|
break;
|
||||||
case 'Q':
|
case 'Q':
|
||||||
case 'q':
|
case 'q':
|
||||||
quotedDecode (tmp);
|
quotedDecode (encoded);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
||||||
LOG_BUG (true, return, "kazMisc::extendedWord bug: unknown mode. (mode: " << content [modePos+1] << ")");
|
LOG_BUG (true, return, "kazMisc::encodedWordDecode bug: unknown mode. (mode: " << m[2] << ")");
|
||||||
}
|
}
|
||||||
LOG ("tmp: " << tmp);
|
LOG ("decoded: " << encoded);
|
||||||
string charset (content.substr (charsetPos, modePos-charsetPos-2));
|
string charset (m[1]);
|
||||||
toLower (charset);
|
toLower (charset);
|
||||||
if (! caseInsensitiveFind (charset, "ISO"))
|
if (! caseInsensitiveFind (charset, "ISO"))
|
||||||
iso2utf (tmp);
|
iso2utf (encoded);
|
||||||
result += tmp;
|
result += encoded;
|
||||||
charsetPos = endPos+2;
|
pos = m.position () + m.str ().length ();
|
||||||
}
|
}
|
||||||
content = result;
|
content = result + content.substr (pos);
|
||||||
LOG ("content: " << content);
|
LOG ("content: " << content);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
void
|
void
|
||||||
kaz::charsetValue (string &content) {
|
kaz::charsetValueDecode (string &content) {
|
||||||
// rfc2184
|
// rfc2184
|
||||||
DEF_LOG ("kaz::charsetValue", "content: " << content);
|
DEF_LOG ("kaz::charsetValueDecode", "content: " << content);
|
||||||
string::size_type langPos = content.find ("'");
|
string::size_type langPos = content.find ("'");
|
||||||
|
|
||||||
LOG_BUG (langPos == string::npos, return, "kazMisc::charsetValue bug: no '. (content: " << content << ")");
|
LOG_BUG (langPos == string::npos, return, "kazMisc::charsetValueDecode bug: no '. (content: " << content << ")");
|
||||||
string::size_type contentPos = content.find ("'", langPos+1);
|
string::size_type contentPos = content.find ("'", langPos+1);
|
||||||
|
|
||||||
LOG_BUG (contentPos == string::npos, return, "kazMisc::charsetValue bug: no double '. (content: " << content << ")");
|
LOG_BUG (contentPos == string::npos, return, "kazMisc::charsetValueDecode bug: no double '. (content: " << content << ")");
|
||||||
string tmp (content.substr (contentPos+1));
|
string tmp (content.substr (contentPos+1));
|
||||||
quotedDecode<'%'> (tmp);
|
quotedDecode<'%'> (tmp);
|
||||||
LOG ("tmp: " << tmp);
|
LOG ("tmp: " << tmp);
|
||||||
@ -435,3 +462,20 @@ kaz::charsetValue (string &content) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
|
void
|
||||||
|
kaz::removeQuote (string &content) {
|
||||||
|
if (content.empty () || content [0] != '"')
|
||||||
|
return;
|
||||||
|
string::size_type stop = (1);
|
||||||
|
for (;;) {
|
||||||
|
stop = content.find ('"', stop);
|
||||||
|
if (stop == string::npos || content [stop-1] != '\\')
|
||||||
|
break;
|
||||||
|
++stop;
|
||||||
|
}
|
||||||
|
content = (stop != string::npos) ?
|
||||||
|
content.substr (1, stop-1) :
|
||||||
|
content.substr (1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ================================================================================
|
||||||
|
@ -35,9 +35,9 @@
|
|||||||
#ifndef _kaz_Attachment_hpp
|
#ifndef _kaz_Attachment_hpp
|
||||||
#define _kaz_Attachment_hpp
|
#define _kaz_Attachment_hpp
|
||||||
|
|
||||||
#include <string>
|
|
||||||
#include <regex>
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <regex>
|
||||||
|
#include <string>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
#include "EmbeddedData.hpp"
|
#include "EmbeddedData.hpp"
|
||||||
@ -54,7 +54,7 @@ namespace kaz {
|
|||||||
//static const vector<const string> stringsToUpdate;
|
//static const vector<const string> stringsToUpdate;
|
||||||
static vector<string> stringsToUpdate;
|
static vector<string> stringsToUpdate;
|
||||||
/*! mime tokens */
|
/*! mime tokens */
|
||||||
static const string contentTypeToken, contentDispositionToken, contentTransferEncodingToken, base64Token, quotedPrintableToken, contentIDToken, PLAIN, HTML, RELATED, ALTERNATIVE;
|
static const string contentTypeToken, contentDispositionToken, contentTransferEncodingToken, base64Token, quotedPrintableToken, contentIDToken, PLAIN, HTML, MULTIPART, RELATED, ALTERNATIVE, SIGNED, KAZ_ATTACH_NAME;
|
||||||
/*! pattern to extract mime values */
|
/*! pattern to extract mime values */
|
||||||
static const regex nameRegEx, nameCharsetRegEx, boundaryRegEx, cidDefRegEx, textRegEx, multiRegEx;
|
static const regex nameRegEx, nameCharsetRegEx, boundaryRegEx, cidDefRegEx, textRegEx, multiRegEx;
|
||||||
|
|
||||||
@ -100,7 +100,7 @@ namespace kaz {
|
|||||||
/*! char position of attachment content */
|
/*! char position of attachment content */
|
||||||
streamoff contentPos, endPos;
|
streamoff contentPos, endPos;
|
||||||
/*! properties of the attachment */
|
/*! properties of the attachment */
|
||||||
bool toExtract, toUpdate, toDisclaim;
|
bool toExtract, toUpdate, toDisclaim, isKazAttachment, isSigned;
|
||||||
/*! id of an image embedded in mbox */
|
/*! id of an image embedded in mbox */
|
||||||
string cid;
|
string cid;
|
||||||
/*! url to replace the attachment */
|
/*! url to replace the attachment */
|
||||||
@ -131,7 +131,9 @@ namespace kaz {
|
|||||||
/*! recursively marks alternative attachments to be disclaim */
|
/*! recursively marks alternative attachments to be disclaim */
|
||||||
void markDisclaim (bool &plainMarked, bool &htmlMarked);
|
void markDisclaim (bool &plainMarked, bool &htmlMarked);
|
||||||
/*! recursively marks big attachments to be removed and upated (including disclaim). return true when part need to be updated (can't be extracted). */
|
/*! recursively marks big attachments to be removed and upated (including disclaim). return true when part need to be updated (can't be extracted). */
|
||||||
bool markSignificant (const string &parentMultiProp, const streamoff &minAttachSize, ifstream &mbox, vector<Attachment *> &allMarkedPtrs);
|
bool markSignificant (const string &parentMultiProp, const bool &parentSigned, const streamoff &minAttachSize, ifstream &mbox, vector<Attachment *> &allMarkedPtrs);
|
||||||
|
/*! get a copy of mime header */
|
||||||
|
string getMime (ifstream &mbox) const;
|
||||||
/*! get a copy of the content. Base64 is decoded. Quoted-Printable is unwarp and unquoted */
|
/*! get a copy of the content. Base64 is decoded. Quoted-Printable is unwarp and unquoted */
|
||||||
string getContent (ifstream &mbox) const;
|
string getContent (ifstream &mbox) const;
|
||||||
/*! write the content, encoded if necessary (base64 and quoted-printable) */
|
/*! write the content, encoded if necessary (base64 and quoted-printable) */
|
||||||
|
@ -44,6 +44,19 @@ namespace kaz {
|
|||||||
namespace bfs = boost::filesystem;
|
namespace bfs = boost::filesystem;
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
|
/*! place to add download link (footer, attachment or both) */
|
||||||
|
enum AttachMode { NONE = 0, FOOTER = 1, ATTACHMENT = 2, BOTH = (FOOTER|ATTACHMENT) };
|
||||||
|
extern const string attachModeLabels[];
|
||||||
|
extern const map<string, AttachMode> attachModeMap;
|
||||||
|
ostream &operator << (ostream &out, const AttachMode &attachMode);
|
||||||
|
istream &operator >> (istream &in, AttachMode &attachMode);
|
||||||
|
|
||||||
|
enum HeaderType { SAME, MULTI, MAIN_PLAIN, ATTACH_HTML };
|
||||||
|
extern const string headerTypeLabels[];
|
||||||
|
extern const map<string, HeaderType> headerTypeMap;
|
||||||
|
ostream &operator << (ostream &out, const HeaderType &headerType);
|
||||||
|
istream &operator >> (istream &in, HeaderType &headerType);
|
||||||
|
|
||||||
/*! root level of e-mail structure */
|
/*! root level of e-mail structure */
|
||||||
class MainAttachment : public Attachment {
|
class MainAttachment : public Attachment {
|
||||||
public:
|
public:
|
||||||
@ -83,6 +96,10 @@ namespace kaz {
|
|||||||
bfs::path extractDir;
|
bfs::path extractDir;
|
||||||
/*! URL for download archives */
|
/*! URL for download archives */
|
||||||
string archiveDownloadURL;
|
string archiveDownloadURL;
|
||||||
|
/*! if no main text in email can be used to add disclaim */
|
||||||
|
bool emptyEMail;
|
||||||
|
/*! if contain previous kaz attachment */
|
||||||
|
bool previousKazAttachment;
|
||||||
|
|
||||||
/*! subset in the tree of all attachments to be consider for extraction or modification */
|
/*! subset in the tree of all attachments to be consider for extraction or modification */
|
||||||
vector<Attachment *> allMarkedPtrs;
|
vector<Attachment *> allMarkedPtrs;
|
||||||
@ -95,11 +112,16 @@ namespace kaz {
|
|||||||
void extractLinks (const string &extractedPlainKAZ);
|
void extractLinks (const string &extractedPlainKAZ);
|
||||||
/*! extract previous links from html-li list. Used by extractPreviousKAZ */
|
/*! extract previous links from html-li list. Used by extractPreviousKAZ */
|
||||||
void extractLinks (const vector<string> &liOne);
|
void extractLinks (const vector<string> &liOne);
|
||||||
|
/*! extract previous links in mbox on one attachment section. Used by extractPreviousKAZ */
|
||||||
|
void extractPreviousKAZ (string &extractedPlainKAZ, string &extractedHtmlKAZ, ifstream &mbox, const Attachment &attach);
|
||||||
/*! extract previous links in mbox. Used by getUpdatedURL and substitute */
|
/*! extract previous links in mbox. Used by getUpdatedURL and substitute */
|
||||||
void extractPreviousKAZ (ifstream &mbox);
|
void extractPreviousKAZ (ifstream &mbox);
|
||||||
/*! remove previous links to archive. Used by substitute */
|
/*! remove previous links to archive. Used by substitute */
|
||||||
void removePreviousArchive ();
|
void removePreviousArchive ();
|
||||||
|
|
||||||
|
/*! rewrite main headers */
|
||||||
|
void rewriteHeaders (ifstream &mbox, ofstream &outbox, const HeaderType &headerType);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/*! the main attachment in mbox */
|
/*! the main attachment in mbox */
|
||||||
MainAttachment (ifstream &mbox);
|
MainAttachment (ifstream &mbox);
|
||||||
@ -113,7 +135,7 @@ namespace kaz {
|
|||||||
/*! extract big attachments in mbox to extractDir and write to stdout le dirname of each extraction */
|
/*! extract big attachments in mbox to extractDir and write to stdout le dirname of each extraction */
|
||||||
void extract (ifstream &mbox, const SizeArg &minSize) const;
|
void extract (ifstream &mbox, const SizeArg &minSize) const;
|
||||||
/*! substitute big attachments by the url give in stdin */
|
/*! substitute big attachments by the url give in stdin */
|
||||||
void substitute (ifstream &mbox, ofstream &outbox, const SizeArg &minSize);
|
void substitute (ifstream &mbox, ofstream &outbox, const SizeArg &minSize, AttachMode attachMode);
|
||||||
};
|
};
|
||||||
|
|
||||||
// ================================================================================
|
// ================================================================================
|
||||||
|
@ -38,6 +38,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <regex>
|
||||||
|
|
||||||
namespace kaz {
|
namespace kaz {
|
||||||
using namespace std;
|
using namespace std;
|
||||||
@ -47,6 +48,8 @@ namespace kaz {
|
|||||||
extern const char * const base64Chars;
|
extern const char * const base64Chars;
|
||||||
/*! set of chars available in URL */
|
/*! set of chars available in URL */
|
||||||
extern const string availableURLChars;
|
extern const string availableURLChars;
|
||||||
|
/*! pattern for encoded words */
|
||||||
|
extern const regex encodedWordRegex;
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
/*! get the width of the terminal */
|
/*! get the width of the terminal */
|
||||||
@ -71,6 +74,9 @@ namespace kaz {
|
|||||||
string::size_type caseInsensitiveFind (const string& s, const string& p, const string::size_type &pos = 0);
|
string::size_type caseInsensitiveFind (const string& s, const string& p, const string::size_type &pos = 0);
|
||||||
/*! reverse find upper case of p in upper case of s */
|
/*! reverse find upper case of p in upper case of s */
|
||||||
string::size_type caseInsensitiveRFind (const string& s, const string& p, const string::size_type &pos = 0);
|
string::size_type caseInsensitiveRFind (const string& s, const string& p, const string::size_type &pos = 0);
|
||||||
|
|
||||||
|
string boundaryGen (const int &size);
|
||||||
|
|
||||||
/*! side effect to repplace =XX by the char with de haxe value XX. It could be %XX in rfc2184 */
|
/*! side effect to repplace =XX by the char with de haxe value XX. It could be %XX in rfc2184 */
|
||||||
template<char delim='='>
|
template<char delim='='>
|
||||||
void quotedDecode (string &content);
|
void quotedDecode (string &content);
|
||||||
@ -82,10 +88,12 @@ namespace kaz {
|
|||||||
void base64Encode (string &content);
|
void base64Encode (string &content);
|
||||||
/*! side effect to change charset of content */
|
/*! side effect to change charset of content */
|
||||||
void iso2utf (string &content);
|
void iso2utf (string &content);
|
||||||
/*! side effect to get the encodedWord according rfc2047 */
|
/*! side effect to get the encoded word according rfc2047 rfc5987 rfc2978 */
|
||||||
void encodedWord (string &content);
|
void encodedWordDecode (string &content);
|
||||||
/*! side effect to get the charsetValue according rfc2184 */
|
/*! side effect to get the charsetValue according rfc2184 */
|
||||||
void charsetValue (string &content);
|
void charsetValueDecode (string &content);
|
||||||
|
/*! side effect to remove quote */
|
||||||
|
void removeQuote (string &content);
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
/*! return if the c need no quote */
|
/*! return if the c need no quote */
|
||||||
|
48
src/include/version.hpp
Normal file
48
src/include/version.hpp
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Copyright KAZ 2021 //
|
||||||
|
// //
|
||||||
|
// contact (at) kaz.bzh //
|
||||||
|
// //
|
||||||
|
// This software is a filter to shrink email by attachment extraction. //
|
||||||
|
// //
|
||||||
|
// This software is governed by the CeCILL-B license under French law and //
|
||||||
|
// abiding by the rules of distribution of free software. You can use, //
|
||||||
|
// modify and/or redistribute the software under the terms of the //
|
||||||
|
// CeCILL-B license as circulated by CEA, CNRS and INRIA at the following //
|
||||||
|
// URL "http://www.cecill.info". //
|
||||||
|
// //
|
||||||
|
// As a counterpart to the access to the source code and rights to copy, //
|
||||||
|
// modify and redistribute granted by the license, users are provided //
|
||||||
|
// only with a limited warranty and the software's author, the holder of //
|
||||||
|
// the economic rights, and the successive licensors have only limited //
|
||||||
|
// liability. //
|
||||||
|
// //
|
||||||
|
// In this respect, the user's attention is drawn to the risks associated //
|
||||||
|
// with loading, using, modifying and/or developing or reproducing the //
|
||||||
|
// software by the user in light of its specific status of free software, //
|
||||||
|
// that may mean that it is complicated to manipulate, and that also //
|
||||||
|
// therefore means that it is reserved for developers and experienced //
|
||||||
|
// professionals having in-depth computer knowledge. Users are therefore //
|
||||||
|
// encouraged to load and test the software's suitability as regards //
|
||||||
|
// their requirements in conditions enabling the security of their //
|
||||||
|
// systems and/or data to be ensured and, more generally, to use and //
|
||||||
|
// operate it in the same conditions as regards security. //
|
||||||
|
// //
|
||||||
|
// The fact that you are presently reading this means that you have had //
|
||||||
|
// knowledge of the CeCILL-B license and that you accept its terms. //
|
||||||
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#ifndef _kaz_version_hpp
|
||||||
|
#define _kaz_version_hpp
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
namespace kaz {
|
||||||
|
// ================================================================================
|
||||||
|
|
||||||
|
extern const std::string LAST_VERSION_NUM, LAST_VERSION_DATE, LAST_VERSION;
|
||||||
|
|
||||||
|
// ================================================================================
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // _kaz_version_hpp
|
26
src/mainpage.md
Normal file
26
src/mainpage.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
**Dépollueur**
|
||||||
|
|
||||||
|
Le dépollueur consiste à extraire les pièces jointes pour les remplacer par des liens de téléchargement temporaire.
|
||||||
|
|
||||||
|
Le logiciel est donc très fortement lié à un logiciel de dépôt de fichier.
|
||||||
|
Le système de dépôt de proposé par Jirafeau à l'avantage de gérer les liens interne en fonction de la signature du contenu (hash).
|
||||||
|
Cela offre plusieurs avantages. les fichiers de même contenu sont factorisés sans que les utilisateurs en aient consciences.
|
||||||
|
L'intégrité des données est inhérente à ce mécanisme, puisque un lien ne va pas faire référence à un autre contenu dans le dépôt.
|
||||||
|
|
||||||
|
A partir du moment où notre dépollueur à une action sur les messages, cela à des conséquences sur l’utilisation d'outils cryptographiques.
|
||||||
|
Le chiffrement de pièces jointes a peu d'incidence. L'information chiffrée se trouve stocké sur un serveur au lieu d'un ordinateur personnel (voir pire un serveur des GAFAM).
|
||||||
|
Ici, l'avantage est que l'information sera détruite au bout d'un temps spécifié.
|
||||||
|
|
||||||
|
La signature, empêche le dépollueur d'intervenir.
|
||||||
|
Dans le cas où l'on souhaite signer ses messages, il faut au préalable déposer ses pièces jointes (hors GAFAM) et faire référence dans le message aux liens de téléchargement.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Main Programmes:
|
||||||
|
* [eMailShrinker](eMailShrinker_8cpp.html)
|
||||||
|
* [jirafeauAPI](jirafeauAPI_8cpp.html)
|
||||||
|
|
||||||
|
Main classes:
|
||||||
|
* [MainAttachment](classkaz_1_1MainAttachment.html)
|
||||||
|
* [Attachment](classkaz_1_1Attachment.html)
|
||||||
|
|
Reference in New Issue
Block a user