unsubscrib

2019-08-27 Thread Carlos Xavier via dovecot
unsubscrib

Re: Group emails based on custom header

2019-08-27 Thread Luuk via dovecot


On 27-8-2019 18:03, Giovanni Mancuso via dovecot wrote:

Hi,
Can i "group by" e-mails based on custom header in imap?

According to my experience if i use "XX UID SEARCH INTHREAD REFS 
HEADER myheader myvalue" i receive  emails UID gathers by 
HEADER+VALUE, but in this way i need to fetch all emails using several 
imap SEARCH.


Has dovecot any features that would help me do this?

Thank you!!



https://wiki2.dovecot.org/Tools/Doveadm/SearchQuery


Group emails based on custom header

2019-08-27 Thread Giovanni Mancuso via dovecot
Hi,
Can i "group by" e-mails based on custom header in imap?

According to my experience if i use "XX UID SEARCH INTHREAD REFS HEADER
myheader myvalue" i receive  emails UID gathers by HEADER+VALUE, but in
this way i need to fetch all emails using several imap SEARCH.

Has dovecot any features that would help me do this?

Thank you!!




Aw: doveadm mailbox handling for directory only

2019-08-27 Thread sch tel via dovecot

i tried to workaround for this with

 

@@ -58,6 +59,13 @@
    if [ $exit_code -ne 0 -a $exit_code -ne 130 ]; then
    echo "Unexpected error: doveadm expunge '$u'"
    echo "Exit Code: $exit_code"
+   if [ $exit_code -eq 68 ]; then
+   if ! [ "$(ls -A /var/spool/mail/${u}/mailboxes/${mbx})" ]; then
+   rmdir "/var/spool/mail/${u}/mailboxes/${mbx}"
+   else
+   echo "Error: Expected directory is empty!"
+   fi
+   fi
    rc=1
    fi
    done

 

but this empty directory is also replicated and would be recreated.



Re: Feature wishlist: Allow to hide client IP/host in submission service

2019-08-27 Thread Sebastian Krause via dovecot
Tom Sommer  wrote:
> Check https://github.com/dovecot/core/pull/74
>
> Unsure if it covers Submission though

Unfortunately not, the "Received" header is added here and there is
no check for an option:

https://github.com/dovecot/core/blob/25f6146c1e04ae8419fbba30f193332f71945dc4/src/submission/submission-commands.c#L245