mirror of
https://github.com/imapsync/imapsync.git
synced 2025-07-21 01:35:54 +02:00
Add --skipallmailduplicates option
This option is appropriate when host1 is Gmail and host 2 isn't. It causes messages in [Gmail]/All Mail to be skipped if they are in some other folder also.
This commit is contained in:
parent
7fda0fe570
commit
5a2605d632
4 changed files with 25 additions and 6 deletions
6
README
6
README
|
@ -314,9 +314,13 @@ OPTIONS
|
|||
X is not also Gmail.
|
||||
Activated with --gmail1 unless --noskipcrossduplicates
|
||||
|
||||
--skipallmailduplicates : Used when host1 is GMail. Skips messages in
|
||||
[Gmail]/All Mail that are also in some other folder.
|
||||
|
||||
--debugcrossduplicates : Prints which messages (UIDs) are skipped with
|
||||
--skipcrossduplicates (and in what other folders
|
||||
they are).
|
||||
they are). Also prints messages skipped by
|
||||
--skipallmailduplicates.
|
||||
|
||||
--pipemess cmd : Apply this cmd command to each message content
|
||||
before the copy.
|
||||
|
|
|
@ -331,9 +331,13 @@ OPTIONS
|
|||
X is not also Gmail.
|
||||
Activated with --gmail1 unless --noskipcrossduplicates
|
||||
|
||||
--skipallmailduplicates : Used when host1 is GMail. Skips messages in
|
||||
[Gmail]/All Mail that are also in some other folder.
|
||||
|
||||
--debugcrossduplicates : Prints which messages (UIDs) are skipped with
|
||||
--skipcrossduplicates (and in what other folders
|
||||
they are).
|
||||
they are). Also prints messages skipped by
|
||||
--skipallmailduplicates.
|
||||
|
||||
--pipemess cmd : Apply this cmd command to each message content
|
||||
before the copy.
|
||||
|
|
|
@ -470,9 +470,13 @@ and user1 user2 are the \-\-user1 \-\-user2 values.
|
|||
\& X is not also Gmail.
|
||||
\& Activated with \-\-gmail1 unless \-\-noskipcrossduplicates
|
||||
\&
|
||||
\& \-\-skipallmailduplicates : Used when host1 is GMail. Skips messages in
|
||||
\& [Gmail]/All Mail that are also in some other folder.
|
||||
\&
|
||||
\& \-\-debugcrossduplicates : Prints which messages (UIDs) are skipped with
|
||||
\& \-\-skipcrossduplicates (and in what other folders
|
||||
\& they are).
|
||||
\& they are). Also prints messages skipped by
|
||||
\& \-\-skipallmailduplicates.
|
||||
\&
|
||||
\& \-\-pipemess cmd : Apply this cmd command to each message content
|
||||
\& before the copy.
|
||||
|
|
13
imapsync
13
imapsync
|
@ -346,9 +346,13 @@ and user1 user2 are the --user1 --user2 values.
|
|||
X is not also Gmail.
|
||||
Activated with --gmail1 unless --noskipcrossduplicates
|
||||
|
||||
--skipallmailduplicates : Used when host1 is GMail. Skips messages in
|
||||
[Gmail]/All Mail that are also in some other folder.
|
||||
|
||||
--debugcrossduplicates : Prints which messages (UIDs) are skipped with
|
||||
--skipcrossduplicates (and in what other folders
|
||||
they are).
|
||||
they are). Also prints messages skipped by
|
||||
--skipallmailduplicates.
|
||||
|
||||
--pipemess cmd : Apply this cmd command to each message content
|
||||
before the copy.
|
||||
|
@ -1104,7 +1108,7 @@ my(
|
|||
$uidnext_default,
|
||||
$fixcolonbug,
|
||||
$create_folder_old,
|
||||
$skipcrossduplicates, $debugcrossduplicates,
|
||||
$skipcrossduplicates, $debugcrossduplicates, $skipallmailduplicates,
|
||||
$disarmreadreceipts,
|
||||
$mixfolders,
|
||||
$fetch_hash_set,
|
||||
|
@ -2487,7 +2491,9 @@ FOLDER: foreach my $h1_fold ( @{ $sync->{h1_folders_wanted} } )
|
|||
|
||||
if ( ( not exists $h2_hash{ $m_id } )
|
||||
and ( not ( exists $sync->{ h2_folders_of_md5 }->{ $m_id } )
|
||||
or not $skipcrossduplicates ) )
|
||||
or ( not $skipcrossduplicates
|
||||
and ( not $skipallmailduplicates
|
||||
or $h1_fold ne "[Gmail]/All Mail" ) ) ) )
|
||||
{
|
||||
# copy
|
||||
my $h2_msg = copy_message( $sync, $h1_msg, $h1_fold, $h2_fold, $h1_fir_ref, $permanentflags2, $cache_dir ) ;
|
||||
|
@ -16802,6 +16808,7 @@ sub get_options_cmd
|
|||
'maxsleep=f' => \$mysync->{maxsleep},
|
||||
'skipcrossduplicates!' => \$skipcrossduplicates,
|
||||
'debugcrossduplicates!' => \$debugcrossduplicates,
|
||||
'skipallmailduplicates!' => \$skipallmailduplicates,
|
||||
'log!' => \$mysync->{log},
|
||||
'tail!' => \$mysync->{tail},
|
||||
'logfile=s' => \$mysync->{logfile},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue