Search The ForumSearch   RegisterRegister  LoginLogin

AfterLogic WebMail Pro

 AfterLogic Forum : AfterLogic WebMail Pro
Subject Topic: DAV doesn’t work Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
pomazip
Newbie
Newbie


Joined: 15 August 2023
Online Status: Offline
Posts: 9
Posted: 15 August 2023 at 7:35am | IP Logged Quote pomazip

Hello,

I installed Afterlogic WebMail Pro PHP (9.7.1.build19-build-o2) through docker (afterlogic/docker-webmail-pro) and QNAP. Email working like a charm but DAV sync doesn't with android mobile. It is still running on trial licence.
I forwarded port 20000 on my router and docker forward port 20000 to local docker IP address on port 80,
so NGINX running on port 80.

I added these to NGINX config:
location ~ ^(.+\.php)(.*)$ {
     fastcgi_split_path_info ^(.+?\.php)(/.*)$;
     fastcgi_pass   127.0.0.1:9000;
     include        fastcgi_params;
     fastcgi_param SCRIPT_FILENAME $request_filename;
     fastcgi_param PATH_INFO $fastcgi_path_info;

Also tried to add this to NGNIX config but in this case whole application stopped:
location / {
rewrite ^/.well-known/carddav http://my.domain.com:20000/dav.php/ redirect;
rewrite ^/.well-known/caldav http://my.domain.com:20000/dav.php/ redirect;
}


I use DAVx5 on android, when connecting to "http://my.domain.com:20000/dav.php/" receiving error message on docker webserver console:
37.76.49.116 - - [15/Aug/2023:13:53:50 +0000] "PROPFIND /dav.php/ HTTP/1.1" 401 317 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.176 0.176 . -
37.76.49.116 - my@email.com [15/Aug/2023:13:53:51 +0000] "PROPFIND /dav.php/ HTTP/1.1" 500 207 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.240 0.240 . -
2023/08/15 13:53:51 [error] 9#9: *99 access forbidden by rule, client: 37.76.49.116, server: _, request: "PROPFIND /.well-known/carddav HTTP/1.1", host: "my.domain.com:20000"
37.76.49.116 - my@email.com [15/Aug/2023:13:53:51 +0000] "PROPFIND /.well-known/carddav HTTP/1.1" 403 153 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.000 - . -
37.76.49.116 - my@email.com [15/Aug/2023:13:53:51 +0000] "PROPFIND /dav.php/ HTTP/1.1" 500 207 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.249 0.249 . -
2023/08/15 13:53:51 [error] 9#9: *99 access forbidden by rule, client: 37.76.49.116, server: _, request: "PROPFIND /.well-known/caldav HTTP/1.1", host: "my.domain.com:20000"
37.76.49.116 - my@email.com [15/Aug/2023:13:53:51 +0000] "PROPFIND /.well-known/caldav HTTP/1.1" 403 153 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.000 - . -

Also tested calendar in DAVx5 with link "http://my.domain.com:20000/dav.php/calendars/MyCalendar-688667a1-0f84-4f82-b2be-ea3ef98c6120/":
37.76.49.116 - - [15/Aug/2023:13:56:15 +0000] "PROPFIND /dav.php/calendars/MyCalendar-688667a1-0f84-4f82-b2be-ea3ef98c6120/ HTTP/1.1" 401 317 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.190 0.190 . -
37.76.49.116 - my@email.com [15/Aug/2023:13:56:16 +0000] "PROPFIND /dav.php/calendars/MyCalendar-688667a1-0f84-4f82-b2be-ea3ef98c6120/ HTTP/1.1" 500 207 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.259 0.259 . -
2023/08/15 13:56:16 [error] 9#9: *124 access forbidden by rule, client: 37.76.49.116, server: _, request: "PROPFIND /.well-known/carddav HTTP/1.1", host: "my.domain.com:20000"
37.76.49.116 - my@email.com [15/Aug/2023:13:56:16 +0000] "PROPFIND /.well-known/carddav HTTP/1.1" 403 153 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.000 - . -
37.76.49.116 - my@email.com [15/Aug/2023:13:56:16 +0000] "PROPFIND /dav.php/calendars/MyCalendar-688667a1-0f84-4f82-b2be-ea3ef98c6120/ HTTP/1.1" 500 207 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.238 0.239 . -
2023/08/15 13:56:16 [error] 9#9: *124 access forbidden by rule, client: 37.76.49.116, server: _, request: "PROPFIND /.well-known/caldav HTTP/1.1", host: "my.domain.com:20000"
37.76.49.116 - my@email.com [15/Aug/2023:13:56:16 +0000] "PROPFIND /.well-known/caldav HTTP/1.1" 403 153 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.000 - . -

DAVx5 logs says there is no available service.

I enabled browser extention in DAV config, called http://my.domain.com:20000/dav.php/ link in browser.
Authentication seems okay but got this error message:

Error Class "XMLWriter" not found
This XML file does not appear to have any style information associated with it. The document tree is shown below.
<d:error xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns">
<s:exception>Error</s:exception>
<s:message>Class "XMLWriter" not found</s:message>
...
</d:error>


Can you help me how is possible to solve mobile sync issue?

Thank you in advance,
P.
Back to Top View pomazip's Profile Search for other posts by pomazip
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6040
Posted: 16 August 2023 at 1:25am | IP Logged Quote Igor

I was able to reproduce such an issue with our Docker image indeed. Can't speak for your custom configuration, but the problem is there even with the default one. To correct it, the following steps should be taken:

1) In Dockerfile:

Code:
RUN apk --no-cache add php81 \
     php81-cli \
     php81-fpm \
     ...


php81-xmlwriter needs to be added to the list of packages installed:

Code:
RUN apk --no-cache add php81 \
     php81-cli \
     php81-fpm \
     php81-xmlwriter \
     ...


2) In nginx.conf file, this entire section:

Code:
location ~ \.php$ {
     try_files $uri =404;

     fastcgi_buffers 16 16k;
     fastcgi_buffer_size 32k;

     fastcgi_split_path_info ^(.+\.php)(/.+)$;
     fastcgi_pass 127.0.0.1:9000;
     fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
     fastcgi_param SCRIPT_NAME $fastcgi_script_name;
     fastcgi_index index.php;
     include fastcgi_params;
}


should be replaced with:

Code:
location ~ ^(.+\.php)(.*)$ {
     fastcgi_split_path_info ^(.+?\.php)(/.*)$;
     fastcgi_pass   127.0.0.1:9000;
     include        fastcgi_params;
     fastcgi_param  SCRIPT_FILENAME $request_filename;
     fastcgi_param  PATH_INFO $fastcgi_path_info;
}


Certainly, you can make these changes on an existing container, by running "apk add php81-xmlwriter" command, adjusting /etc/nginx/nginx.conf file and restarting the services.

Hope this helps. We're now working on 9.7.3 release, once it's out we'll be updating the images both on GitHub and in DockerHub.

--
Regards,
Igor, Afterlogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 
pomazip
Newbie
Newbie


Joined: 15 August 2023
Online Status: Offline
Posts: 9
Posted: 16 August 2023 at 2:38pm | IP Logged Quote pomazip

Hello Igor,

Thank you very much.
With these modifications I was able to login through browser and check config.

However with DAVx5 android client still doesn't work (I have switched off browser login though).
I'm still receiving these errors on docker webserver console either trying connecting to "http://my.domain.com:20000/dav.php/" or "http://my.domain.com:20000/dav.php/calendars/MyCalendar-688667a1-0f84-4f82-b2be-ea3ef98c6120/":

80.95.67.215 - - [16/Aug/2023:20:37:07 +0000] "PROPFIND /dav.php/calendars/MyCalendar-688667a1-0f84-4f82-b2be-ea3ef98c6120/ HTTP/1.1" 401 317 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.188 0.189 . -
80.95.67.215 - my@email.com [16/Aug/2023:20:37:08 +0000] "PROPFIND /dav.php/calendars/MyCalendar-688667a1-0f84-4f82-b2be-ea3ef98c6120/ HTTP/1.1" 500 207 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.266 0.266 . -
2023/08/16 20:37:08 [error] 9#9: *24 access forbidden by rule, client: 80.95.67.215, server: _, request: "PROPFIND /.well-known/carddav HTTP/1.1", host: "my.domain.com:20000"
80.95.67.215 - my@email.com [16/Aug/2023:20:37:08 +0000] "PROPFIND /.well-known/carddav HTTP/1.1" 403 153 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.000 - . -
80.95.67.215 - my@email.com [16/Aug/2023:20:37:08 +0000] "PROPFIND /dav.php/calendars/MyCalendar-688667a1-0f84-4f82-b2be-ea3ef98c6120/ HTTP/1.1" 500 207 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.246 0.246 . -
2023/08/16 20:37:08 [error] 9#9: *24 access forbidden by rule, client: 80.95.67.215, server: _, request: "PROPFIND /.well-known/caldav HTTP/1.1", host: "my.domain.com:20000"
80.95.67.215 - my@email.com [16/Aug/2023:20:37:08 +0000] "PROPFIND /.well-known/caldav HTTP/1.1" 403 153 "-" "DAVx5/4.3.5.2-gplay (2023/08/07; dav4jvm; okhttp/4.11.0) Android/13" "-" 0.000 - . -

Do I need to setup somehow "/.well-known/carddav" parameters in NGINX config?
I'm not sure whether matters I updated PHP version to 8.1.22?

Regards,
P.
Back to Top View pomazip's Profile Search for other posts by pomazip
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6040
Posted: 17 August 2023 at 12:24am | IP Logged Quote Igor

Hello,

I think the main issue there is with PROPFIND request failing, I've tested this with eM Client and could replicate that issue as well.

It appears that, additionally to php81-xmlwriter extension, php81-xmlreader needs to be installed as well. After doing so, I was able to access the calendars via DAV in eM Client; had to delete and add the account again though. Of course, this will be reflected in the upcoming update of the Docker images.

As for /.well-known/carddav it's essentially a redirect so it shouldn't affect the overall functionality, as long as access via main DAV URL works correctly.

--
Regards,
Igor, Afterlogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 
pomazip
Newbie
Newbie


Joined: 15 August 2023
Online Status: Offline
Posts: 9
Posted: 17 August 2023 at 2:35pm | IP Logged Quote pomazip

Hello Igor,

Thank you very much, DAV is also working now!

Sorry for disturbing you again, maybe do you have some hint on these minor issues?
- There is not possible to search for messages text entered to search field in browser. I tested with Firefox and Edge both get back full list of messages again. However search function working well with Aurora Mail android client (v2.3.0240).

- Aurora Mail android client is not able to attach attachments at all when sending email, tested on Lenovo, android 10 and Samsung, android 13. It has permission for the storage in androids.

- I can receive message when somebody accepted my invitation but do not see the answer either in browser or android calendar.

Have you planning to update Aurora android client sometime?

Thank you in advance.
Regards,
P.
Back to Top View pomazip's Profile Search for other posts by pomazip
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6040
Posted: 18 August 2023 at 12:24am | IP Logged Quote Igor

Quote:
Thank you very much, DAV is also working now!


Awesome! My hope is Docker images will be updated next week.

Quote:
There is not possible to search for messages text entered to search field in browser. I tested with Firefox and Edge both get back full list of messages again. However search function working well with Aurora Mail android client (v2.3.0240).


Do you mean the search bar above the list of messages? Search there only works for message headers, not message text - that one would require opening Advanced Search mode (little arrow to the right of search box), or prepending text: to the text you search for.

In mobile client it works differently indeed, as that one downloads complete email messages to the local storage.

Quote:
Aurora Mail android client is not able to attach attachments at all when sending email, tested on Lenovo, android 10 and Samsung, android 13. It has permission for the storage in androids.


I wasn't able to replicate such an issue, a file of 4Mb went through just fine and was received as well. Are you certain attaching files work in web client? Sounds like there could be a permission-related issue.

Quote:
I can receive message when somebody accepted my invitation but do not see the answer either in browser or android calendar.


That's something I'd have the developers to look into, but first, please make sure you update to version 9.7.2 of WebMail Pro, as there were various bugfixes in that version, and some could be affecting calendar and invites as well. If the update doesn't help, please open a ticket in our HelpDesk and provide step-by-step description of how the issue can be reproduced.

Quote:
Have you planning to update Aurora android client sometime?


In fact, we're working on it, but there's no ETA as the process is rather complicated with both AppStore and PlayMarket, they keep adding new pitfalls.

--
Regards,
Igor, Afterlogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 
pomazip
Newbie
Newbie


Joined: 15 August 2023
Online Status: Offline
Posts: 9
Posted: 18 August 2023 at 3:23pm | IP Logged Quote pomazip

Hello Igor,

Thank you!

Yes, I mean the search bar above the list of messages. I tested with advanced search as well but it is always showing the full list again not the search results.

On android webclient attaching files working well but from Aurora client doesn't.

I'm curious to test new WebMail Pro version, hope it can solve some of these minor issues.

Regards,
P.
Back to Top View pomazip's Profile Search for other posts by pomazip
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6040
Posted: 21 August 2023 at 12:48am | IP Logged Quote Igor

Quote:
Yes, I mean the search bar above the list of messages. I tested with advanced search as well but it is always showing the full list again not the search results.


So, even if you enter something like "text:script" in a search bar - or enter "script" into "Text" field of Advanced Search - you get the full list of messages, even if search request is just one word? Or is the issue there when you search by more than 1 word? If that would be the case, not much can be done I'm afraid, current search is essentially doing OR query, i.e. looks for messages which have at least one word of the search request.

Quote:
I'm curious to test new WebMail Pro version, hope it can solve some of these minor issues.


The latest version 9.7.2 is out for some time, but from your first message in the thread, it looks like you have a previous version installed. You can get the most recent image from GitHub repository, that will install 9.7.2. Right now, we're working on releasing 9.7.3 and will be updating images at DockerHub shortly after. Thanks!

--
Regards,
Igor, Afterlogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 
pomazip
Newbie
Newbie


Joined: 15 August 2023
Online Status: Offline
Posts: 9
Posted: 21 August 2023 at 12:56am | IP Logged Quote pomazip

Yes, if I enter something like "text:script" in the search bar - or enter "script" into "Text" field of Advanced Search - I get only the full list of messages, I tested with entering just one word.
I also tested like "%script%" or "*script*" but get back the full list only.

Maybe do you have hint on this?

Regards,
P.
Back to Top View pomazip's Profile Search for other posts by pomazip
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6040
Posted: 21 August 2023 at 1:07am | IP Logged Quote Igor

I'm afraid that sounds like something's wrong with the mail server you use. WebMail Pro sends IMAP command UID SORT to mail server, and it's up to the mail server to return a list of message UIDs which match a search pattern. Perhaps, checking debug logs of WebMail could shed some light onto the reasons of this, but my guess is, mail server is at fault here.

--
Regards,
Igor, Afterlogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 
pomazip
Newbie
Newbie


Joined: 15 August 2023
Online Status: Offline
Posts: 9
Posted: 21 August 2023 at 2:01pm | IP Logged Quote pomazip

Hello Igor,

Thank you, I have managed to gather debug log during searching for "possible" string.
However I cannot see any useful info.
Would you be so kind to have a look?


[20:46:48.14][5855a6b3] URL: /?/Api/
[20:46:48.14][5855a6b3]
[20:46:48.14][5855a6b3] ===== API: Mail::GetMessages
[20:46:48.16][5855a6b3] IMAP[NOTE]: Start connection to "tcp://10.177.177.2:143"
[20:46:48.16][5855a6b3] IMAP[DATA]: < * OK Synametrics IMAP4rev1 server ready 8/21/23 10:46 PM\r\n
[20:46:48.16][5855a6b3] IMAP[DATA]: > TAG1 CAPABILITY\r\n
[20:46:48.16][5855a6b3] IMAP[DATA]: < * CAPABILITY IMAP4rev1 IDLE\r\n
[20:46:48.16][5855a6b3] IMAP[DATA]: < TAG1 OK CAPABILITY completed\r\n
[20:46:48.16][5855a6b3] IMAP[SECURE]: > TAG2 LOGIN "my@email.com" "********"\r\n
[20:46:48.16][5855a6b3] IMAP[DATA]: < TAG2 OK LOGIN completed\r\n
[20:46:48.16][5855a6b3] IMAP[DATA]: > TAG3 SELECT "INBOX"\r\n
[20:46:48.17][5855a6b3] IMAP[DATA]: < * FLAGS (\Answered \Flagged \Deleted \Seen \Draft)\r\n
[20:46:48.17][5855a6b3] IMAP[DATA]: < * 36 EXISTS\r\n
[20:46:48.17][5855a6b3] IMAP[DATA]: < * OK [UIDVALIDITY 10] UID validity status\r\n
[20:46:48.17][5855a6b3] IMAP[DATA]: < * OK [UIDNEXT 207] Predicted next UID\r\n
[20:46:48.17][5855a6b3] IMAP[DATA]: < * 0 RECENT\r\n
[20:46:48.17][5855a6b3] IMAP[DATA]: < * OK [PERMANENTFLAGS (\Answered \Flagged \Deleted \Seen \Draft)]\r\n
[20:46:48.21][5855a6b3] IMAP[DATA]: < TAG3 OK [READ-WRITE] SELECT completed\r\n
[20:46:48.21][5855a6b3] IMAP[DATA]: > TAG4 STATUS "INBOX" (MESSAGES UNSEEN UIDNEXT)\r\n
[20:46:48.21][5855a6b3] IMAP[DATA]: < * STATUS "INBOX" (MESSAGES 36 UNSEEN 0 UIDNEXT 207)\r\n
[20:46:48.21][5855a6b3] IMAP[DATA]: < TAG4 OK STATUS COMPLETED\r\n
[20:46:48.21][5855a6b3] IMAP[DATA]: > TAG5 CAPABILITY\r\n
[20:46:48.21][5855a6b3] IMAP[DATA]: < * CAPABILITY IMAP4rev1 IDLE\r\n
[20:46:48.21][5855a6b3] IMAP[DATA]: < TAG5 OK CAPABILITY completed\r\n
[20:46:48.21][5855a6b3] IMAP[DATA]: > TAG6 UID SEARCH OR OR OR FROM "possible" TO "possible" CC "possible" SUBJECT "possible"\r\n
[20:46:48.21][5855a6b3] IMAP[DATA]: < * SEARCH 1 2 7 8 9 10 11 14 15 16 17 41 97 103 106 108 109 113 135 153 159 162 164 171 174 175 176 186 188 189 190 191 192 201 205 206\r\n
[20:46:48.21][5855a6b3] IMAP[DATA]: < TAG6 OK UID completed\r\n
[20:46:48.21][5855a6b3] IMAP[DATA]: > TAG7 UID FETCH 206,205,201,192,191,190,189,188,186,176,175,174,171,164,162,159,153,135,113,109,108,106,103,97,41,17,16,15,14,11,10,9,8,7,2,1 (UID RFC822.SIZE INTERNALDATE FLAGS BODYSTRUCTURE BODY.PEEK[HEADER])\r\n
[20:46:48.22][5855a6b3] IMAP[DATA]: < * 36 FETCH (UID 206 RFC822.SIZE 60551 INTERNALDATE "21-Aug-2023 16:49:45 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "HTML" ("CHARSET" "utf-8") NIL NIL "QUOTED-PRINTABLE" 8399 198 NIL NIL NIL NIL)("IMAGE" "JPEG" NIL "" NIL "BASE64" 48162 NIL ("inline" NIL) NIL NIL) "RELATED" ("BOUNDARY" "----=_Part_6092622_160807306.1692629321947") NIL NIL NIL) BODY[HEADER] {3667}\r\n
[20:46:48.25][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.25][5855a6b3] IMAP[DATA]: < * 35 FETCH (UID 205 RFC822.SIZE 377782 INTERNALDATE "21-Aug-2023 00:14:09 +0200" FLAGS (\Seen \Flagged) BODYSTRUCTURE (((("TEXT" "HTML" ("CHARSET" "utf-8") NIL NIL "BASE64" 83662 1196 NIL NIL NIL NIL)("IMAGE" "PNG" NIL "" NIL "BASE64" 7782 NIL NIL NIL NIL) "RELATED" ("BOUNDARY" "--boundary_32926_a59ed89a-97ef-4653-87b9-5f4a228c1889" "TYPE" "text/html") NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "--boundary_32925_5f90ee0f-f2b3-4d07-89c3-7a3f7e94cabe") NIL NIL NIL)(("APPLICATION" "PDF" ("NAME" "BUD-HP-4367972.pdf") NIL NIL "BASE64" 281968 NIL ("attachment" NIL) NIL NIL) "MIXED" ("BOUNDARY" "--boundary_32928_9a784a4e-e03d-4293-a041-0b9269a28e15") NIL NIL NIL) "MIXED" ("BOUNDARY" "--boundary_32927_d268307b-7da8-41cb-b5f4-f3c5d4697e15") NIL NIL NIL) BODY[HEADER] {3162}\r\n
[20:46:48.25][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.25][5855a6b3] IMAP[DATA]: < * 34 FETCH (UID 201 RFC822.SIZE 12358 INTERNALDATE "20-Aug-2023 23:36:59 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 2429 94 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "utf-8") NIL NIL "QUOTED-PRINTABLE" 5549 127 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "b1_bfb5d650af4ea3be374e7c137afbe9b9") NIL NIL NIL) BODY[HEADER] {4154}\r\n
[20:46:48.26][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.26][5855a6b3] IMAP[DATA]: < * 33 FETCH (UID 192 RFC822.SIZE 32783 INTERNALDATE "18-Aug-2023 13:15:16 +0200" FLAGS (\Seen \Answered) BODYSTRUCTURE ((("TEXT" "PLAIN" ("CHARSET" "utf-8") NIL NIL "QUOTED-PRINTABLE" 4632 147 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "utf-8") NIL NIL "QUOTED-PRINTABLE" 14968 302 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "TFY23pTf") NIL NIL NIL)("IMAGE" "PNG" ("NAME" "c2b899492c504cc74cadae8e2a822050@symfony") "" NIL "BASE64" 7930 NIL ("inline" ("NAME" "c2b899492c504cc74cadae8e2a822050@symfony" "FILENAME" "3oujb32y")) NIL NIL) "RELATED" ("BOUNDARY" "qOTSS1zq") NIL NIL NIL) BODY[HEADER] {4670}\r\n
[20:46:48.26][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.26][5855a6b3] IMAP[DATA]: < * 32 FETCH (UID 191 RFC822.SIZE 14393 INTERNALDATE "18-Aug-2023 13:12:16 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "utf-8") NIL NIL "8BIT" 585 6 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "utf-8") NIL NIL "QUOTED-PRINTABLE" 9620 183 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "b1_31669e3b52850939738a92e08b8d699e") NIL NIL NIL) BODY[HEADER] {3933}\r\n
[20:46:48.27][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.27][5855a6b3] IMAP[DATA]: < * 31 FETCH (UID 190 RFC822.SIZE 12901 INTERNALDATE "18-Aug-2023 13:12:16 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "utf-8") NIL NIL "8BIT" 885 23 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "utf-8") NIL NIL "QUOTED-PRINTABLE" 7952 162 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "b1_ade36f7749a83b97737a96561b01f719") NIL NIL NIL) BODY[HEADER] {3801}\r\n
[20:46:48.27][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.27][5855a6b3] IMAP[DATA]: < * 30 FETCH (UID 189 RFC822.SIZE 15232 INTERNALDATE "18-Aug-2023 12:06:12 +0200" FLAGS (\Seen) BODYSTRUCTURE ("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 10079 278 NIL NIL NIL NIL) BODY[HEADER] {5211}\r\n
[20:46:48.28][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.28][5855a6b3] IMAP[DATA]: < * 29 FETCH (UID 188 RFC822.SIZE 116485 INTERNALDATE "18-Aug-2023 00:50:08 +0200" FLAGS (\Seen) BODYSTRUCTURE ((("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 6927 92 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 94490 1213 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "=_96e230be5a0c4c3d4db6a34bb36751d5") NIL NIL NIL)("IMAGE" "PNG" ("NAME" "eon_1x1__014_009.png") "" NIL "BASE64" 1274 NIL ("inline" ("FILENAME" "eon_1x1__014_009.png" "SIZE" "929")) NIL NIL)("IMAGE" "PNG" ("NAME" "Halozat_logo_kicsi2.png") "" NIL "BASE64" 2268 NIL ("inline" ("FILENAME" "Halozat_logo_kicsi2.png" "SIZE" "1655")) NIL NIL)("IMAGE" "PNG" ("NAME" "eon-social-fb-24x24__101_023.png") "" NIL "BASE64" 1950 NIL ("inline" ("FILENAME" "eon-social-fb-24x24__101_023.png" "SIZE" "1425")) NIL NIL)("IMAGE" "PNG" ("NAME" "eon-social-insta-22x22__101_023.png") "" NIL "BASE64" 1946 NIL ("inline" ("FILENAME" "eon-social-insta-22x22__101_023.png" "SIZE" "1421")) NIL NIL)("IMAGE" "PNG" ("NAME" "eon-social-yt-24x22__101_023.png") "" NIL "BASE64" 1648 NIL ("inline" ("FILENAME" "eon-social-yt-24x22__101_023.png" "SIZE" "1203")) NIL NIL) "RELATED" ("BOUNDARY" "=_66364a04abe218ddf646bfbf561c8992") NIL NIL NIL) BODY[HEADER] {4304}\r\n
[20:46:48.31][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.31][5855a6b3] IMAP[DATA]: < * 28 FETCH (UID 186 RFC822.SIZE 44420 INTERNALDATE "18-Aug-2023 00:01:57 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 19085 455 NIL NIL NIL NIL)("IMAGE" "PNG" ("NAME" "headerLogo") "part1.top.header" NIL "BASE64" 6248 NIL ("inline" ("FILENAME" "headerLogo")) NIL NIL)("IMAGE" "JPG" ("NAME" "distributionGraph") "part2.top.graph" NIL "BASE64" 18132 NIL ("inline" ("FILENAME" "distributionGraph")) NIL NIL) "RELATED" ("BOUNDARY" "----=_Part_12_1900882370.1692309717745") NIL NIL NIL) BODY[HEADER] {361}\r\n
[20:46:48.31][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.31][5855a6b3] IMAP[DATA]: < * 27 FETCH (UID 176 RFC822.SIZE 540433 INTERNALDATE "17-Aug-2023 13:34:47 +0200" FLAGS (\Seen \Answered \Flagged) BODYSTRUCTURE ((("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 374 16 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 743 13 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "00000000000063be6806031cc983") NIL NIL NIL)("APPLICATION" "PDF" ("NAME" "boarding-pass.pdf") "<18a034548a03f79fd061>" NIL "BASE64" 533790 NIL ("attachment" ("FILENAME" "boarding-pass.pdf")) NIL NIL) "MIXED" ("BOUNDARY" "00000000000063be6a06031cc985") NIL NIL NIL) BODY[HEADER] {4893}\r\n
[20:46:48.31][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.31][5855a6b3] IMAP[DATA]: < * 26 FETCH (UID 175 RFC822.SIZE 23985 INTERNALDATE "17-Aug-2023 13:04:47 +0200" FLAGS (\Seen \Answered) BODYSTRUCTURE ((("TEXT" "PLAIN" ("CHARSET" "utf-8") NIL NIL "QUOTED-PRINTABLE" 2522 66 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "utf-8") NIL NIL "QUOTED-PRINTABLE" 8512 190 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "MFvJnADW") NIL NIL NIL)("IMAGE" "PNG" ("NAME" "fb37890354830fdee40fca5f13d4a4c0@symfony") "" NIL "BASE64" 7930 NIL ("inline" ("NAME" "fb37890354830fdee40fca5f13d4a4c0@symfony" "FILENAME" "9um34ris")) NIL NIL) "RELATED" ("BOUNDARY" "lbY2wWmn") NIL NIL NIL) BODY[HEADER] {4436}\r\n
[20:46:48.31][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.32][5855a6b3] IMAP[DATA]: < * 25 FETCH (UID 174 RFC822.SIZE 6139 INTERNALDATE "17-Aug-2023 13:01:47 +0200" FLAGS (\Seen) BODYSTRUCTURE ("TEXT" "PLAIN" ("CHARSET" "utf-8") NIL NIL "QUOTED-PRINTABLE" 1418 46 NIL NIL NIL NIL) BODY[HEADER] {4833}\r\n
[20:46:48.32][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.32][5855a6b3] IMAP[DATA]: < * 24 FETCH (UID 171 RFC822.SIZE 9423 INTERNALDATE "17-Aug-2023 12:10:40 +0200" FLAGS (\Seen \Answered) BODYSTRUCTURE ("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "7BIT" 4359 93 NIL NIL NIL NIL) BODY[HEADER] {5152}\r\n
[20:46:48.32][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.32][5855a6b3] IMAP[DATA]: < * 23 FETCH (UID 164 RFC822.SIZE 5580 INTERNALDATE "17-Aug-2023 12:10:40 +0200" FLAGS (\Seen) BODYSTRUCTURE ("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 734 20 NIL NIL NIL NIL) BODY[HEADER] {4930}\r\n
[20:46:48.32][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.32][5855a6b3] IMAP[DATA]: < * 22 FETCH (UID 162 RFC822.SIZE 6623 INTERNALDATE "17-Aug-2023 12:10:39 +0200" FLAGS (\Seen) BODYSTRUCTURE ("TEXT" "PLAIN" ("CHARSET" "utf-8") NIL "=?utf-8?B?w5pqIHN6w6FtbGEga8Opc3rDvGx0IC0gw4FSQU0=?=" "QUOTED-PRINTABLE" 3886 90 NIL NIL NIL NIL) BODY[HEADER] {2785}\r\n
[20:46:48.33][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.33][5855a6b3] IMAP[DATA]: < * 21 FETCH (UID 159 RFC822.SIZE 54023 INTERNALDATE "17-Aug-2023 12:10:39 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "utf-8") NIL NIL "BASE64" 736 11 NIL NIL NIL NIL)("APPLICATION" "OCTET-STREAM" ("NAME" "=?utf-8?B?U3rDoW1sYV8yMDIzXzAwMDE3ODgucGRm?=") NIL NIL "BASE64" 49270 NIL ("attachment" NIL) NIL NIL) "MIXED" ("BOUNDARY" "--boundary_43_84f2d7da-4870-44f8-83ed-66dc74c7ae4f") NIL NIL NIL) BODY[HEADER] {3712}\r\n
[20:46:48.33][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.33][5855a6b3] IMAP[DATA]: < * 20 FETCH (UID 153 RFC822.SIZE 6877 INTERNALDATE "17-Aug-2023 12:10:39 +0200" FLAGS (\Seen \Flagged) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "BASE64" 402 6 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "BASE64" 520 7 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "000000000000500ca506026690d1") NIL NIL NIL) BODY[HEADER] {5794}\r\n
[20:46:48.33][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.33][5855a6b3] IMAP[DATA]: < * 19 FETCH (UID 135 RFC822.SIZE 66942 INTERNALDATE "17-Aug-2023 12:10:38 +0200" FLAGS (\Seen) BODYSTRUCTURE ((("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 2762 82 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 4593 60 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "0000000000007a5ef106001ebde0") NIL NIL NIL)("IMAGE" "PNG" ("NAME" "image.png") "" NIL "BASE64" 54682 NIL ("inline" ("FILENAME" "image.png")) NIL NIL) "RELATED" ("BOUNDARY" "0000000000007a5ef206001ebde1") NIL NIL NIL) BODY[HEADER] {4330}\r\n
[20:46:48.40][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.40][5855a6b3] IMAP[DATA]: < * 18 FETCH (UID 113 RFC822.SIZE 2305682 INTERNALDATE "17-Aug-2023 12:10:35 +0200" FLAGS (\Seen) BODYSTRUCTURE ((("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 922 48 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 1966 36 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "0000000000009d296d05ffff57f8") NIL NIL NIL)("IMAGE" "JPEG" ("NAME" "20230708_212405.jpg") "<18937204bf4350e298a1>" NIL "BASE64" 2298720 NIL ("attachment" ("FILENAME" "20230708_212405.jpg")) NIL NIL) "MIXED" ("BOUNDARY" "0000000000009d297005ffff57fa") NIL NIL NIL) BODY[HEADER] {3382}\r\n
[20:46:48.41][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.41][5855a6b3] IMAP[DATA]: < * 17 FETCH (UID 109 RFC822.SIZE 5306 INTERNALDATE "17-Aug-2023 12:10:35 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 84 7 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 261 4 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "000000000000b77e8005ffb6bf8a") NIL NIL NIL) BODY[HEADER] {4692}\r\n
[20:46:48.42][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.42][5855a6b3] IMAP[DATA]: < * 16 FETCH (UID 108 RFC822.SIZE 8216 INTERNALDATE "17-Aug-2023 12:10:35 +0200" FLAGS (\Seen) BODYSTRUCTURE ("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "7BIT" 3112 71 NIL NIL NIL NIL) BODY[HEADER] {5204}\r\n
[20:46:48.43][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.43][5855a6b3] IMAP[DATA]: < * 15 FETCH (UID 106 RFC822.SIZE 7106 INTERNALDATE "17-Aug-2023 12:10:35 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 647 34 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 1257 26 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "00000000000063db9505ffc05a0e") NIL NIL NIL) BODY[HEADER] {4957}\r\n
[20:46:48.45][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.45][5855a6b3] IMAP[DATA]: < * 14 FETCH (UID 103 RFC822.SIZE 447138 INTERNALDATE "17-Aug-2023 12:10:35 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 480 17 NIL NIL NIL NIL)("IMAGE" "JPEG" NIL NIL NIL "BASE64" 440478 NIL ("attachment" ("FILENAME" "=?utf-8?B?Qm9sZG9nIG7DqXZuYXBvdC5qcGc=?=")) NIL NIL) "MIXED" ("BOUNDARY" "rekceb-2be5db97-e815-4625-97fe-f9f1c78484d4") NIL NIL NIL) BODY[HEADER] {5862}\r\n
[20:46:48.49][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.49][5855a6b3] IMAP[DATA]: < * 13 FETCH (UID 97 RFC822.SIZE 1247090 INTERNALDATE "17-Aug-2023 12:10:33 +0200" FLAGS (\Seen) BODYSTRUCTURE ((("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 706 36 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 2126 28 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "000000000000ddd25205ffc055bc") NIL NIL NIL)("IMAGE" "JPEG" ("NAME" "20230705_185533.jpg") "<18926ff050fa91aee0e1>" NIL "BASE64" 1240268 NIL ("attachment" ("FILENAME" "20230705_185533.jpg")) NIL NIL) "MIXED" ("BOUNDARY" "000000000000ddd25405ffc055be") NIL NIL NIL) BODY[HEADER] {3298}\r\n
[20:46:48.57][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.57][5855a6b3] IMAP[DATA]: < * 12 FETCH (UID 41 RFC822.SIZE 2305599 INTERNALDATE "07-Aug-2023 20:08:51 +0200" FLAGS (\Seen) BODYSTRUCTURE ((("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 922 48 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 1966 36 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "0000000000009d296d05ffff57f8") NIL NIL NIL)("IMAGE" "JPEG" ("NAME" "20230708_212405.jpg") "<18937204bf4350e298a1>" NIL "BASE64" 2298720 NIL ("attachment" ("FILENAME" "20230708_212405.jpg")) NIL NIL) "MIXED" ("BOUNDARY" "0000000000009d297005ffff57fa") NIL NIL NIL) BODY[HEADER] {3299}\r\n
[20:46:48.58][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.58][5855a6b3] IMAP[DATA]: < * 11 FETCH (UID 17 RFC822.SIZE 5286 INTERNALDATE "07-Aug-2023 20:08:50 +0200" FLAGS (\Seen) BODYSTRUCTURE ("TEXT" "HTML" ("CHARSET" "utf-8" "BOUNDARY" "part_7ef54707_7a1a_43af_a037_adccfd1abb26") "" NIL "7BIT" 586 21 NIL NIL NIL NIL) BODY[HEADER] {4700}\r\n
[20:46:48.58][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.58][5855a6b3] IMAP[DATA]: < * 10 FETCH (UID 16 RFC822.SIZE 8133 INTERNALDATE "07-Aug-2023 20:08:50 +0200" FLAGS (\Seen) BODYSTRUCTURE ("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "7BIT" 3112 71 NIL NIL NIL NIL) BODY[HEADER] {5121}\r\n
[20:46:48.58][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.58][5855a6b3] IMAP[DATA]: < * 9 FETCH (UID 15 RFC822.SIZE 17329 INTERNALDATE "07-Aug-2023 20:08:50 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "ISO-8859-2") NIL NIL "QUOTED-PRINTABLE" 7428 225 NIL NIL NIL NIL)("IMAGE" "GIF" ("NAME" "pic00491.gif") NIL NIL "BASE64" 5420 NIL ("attachment" ("FILENAME" "pic00491.gif")) NIL NIL) "MIXED" ("BOUNDARY" "0__=4EBB0371DFA47F568f9e8a93df938690918c4EBB0371DFA47F56") ("inline" NIL) NIL NIL) BODY[HEADER] {4098}\r\n
[20:46:48.59][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.59][5855a6b3] IMAP[DATA]: < * 8 FETCH (UID 14 RFC822.SIZE 77048 INTERNALDATE "07-Aug-2023 20:08:50 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "windows-1250") NIL NIL "QUOTED-PRINTABLE" 3091 282 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "windows-1250") NIL NIL "QUOTED-PRINTABLE" 63499 2271 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "_000_eb9db0196663460b803e5a3d27572f9botpbankhu_") NIL "en-US" NIL) BODY[HEADER] {10114}\r\n
[20:46:48.60][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.60][5855a6b3] IMAP[DATA]: < * 7 FETCH (UID 11 RFC822.SIZE 72640 INTERNALDATE "07-Aug-2023 20:08:50 +0200" FLAGS (\Seen) BODYSTRUCTURE ((("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 191 5 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 537 8 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "0000000000004bacd805ff47fa60") NIL NIL NIL)("APPLICATION" "PDF" ("NAME" "matrica_2UY79QQN79B.pdf") "<185f8d145a6f30b29641>" NIL "BASE64" 66918 NIL ("attachment" ("FILENAME" "matrica_2UY79QQN79B.pdf")) NIL NIL) "MIXED" ("BOUNDARY" "0000000000004bacda05ff47fa62") NIL NIL NIL) BODY[HEADER] {4313}\r\n
[20:46:48.61][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.61][5855a6b3] IMAP[DATA]: < * 6 FETCH (UID 10 RFC822.SIZE 447055 INTERNALDATE "07-Aug-2023 20:08:50 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 480 17 NIL NIL NIL NIL)("IMAGE" "JPEG" NIL NIL NIL "BASE64" 440478 NIL ("attachment" ("FILENAME" "=?utf-8?B?Qm9sZG9nIG7DqXZuYXBvdC5qcGc=?=")) NIL NIL) "MIXED" ("BOUNDARY" "rekceb-2be5db97-e815-4625-97fe-f9f1c78484d4") NIL NIL NIL) BODY[HEADER] {5779}\r\n
[20:46:48.63][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.63][5855a6b3] IMAP[DATA]: < * 5 FETCH (UID 9 RFC822.SIZE 497203 INTERNALDATE "07-Aug-2023 20:08:50 +0200" FLAGS (\Seen) BODYSTRUCTURE (((("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 2770 60 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 3422 53 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "000000000000ce99ea05ff3f1a62") NIL NIL NIL)("IMAGE" "PNG" ("NAME" "logo") "<18905e9e75a32c5ab1>" NIL "BASE64" 24134 NIL ("inline" ("FILENAME" "logo")) NIL NIL)("IMAGE" "PNG" ("NAME" "logo") "<>" NIL "BASE64" 24134 NIL ("inline" ("FILENAME" "logo")) NIL NIL) "RELATED" ("BOUNDARY" "000000000000ce99eb05ff3f1a63") NIL NIL NIL)("APPLICATION" "PDF" ("NAME" "Kotveny - LTC.pdf") "<18905e9e75ae89c1ed62>" NIL "BASE64" 213866 NIL ("attachment" ("FILENAME" "Kotveny - LTC.pdf")) NIL NIL)("APPLICATION" "PDF" ("NAME" "Dijbekero.pdf") "<18905e9e75a3f280f033>" NIL "BASE64" 222336 NIL ("attachment" ("FILENAME" "Dijbekero.pdf")) NIL NIL) "MIXED" ("BOUNDARY" "000000000000ce99ec05ff3f1a64") NIL NIL NIL) BODY[HEADER] {5132}\r\n
[20:46:48.63][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.63][5855a6b3] IMAP[DATA]: < * 4 FETCH (UID 8 RFC822.SIZE 10259 INTERNALDATE "07-Aug-2023 20:08:50 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "utf-8") NIL NIL "BASE64" 206 3 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "utf-8") "<1BD0DA8F77C00C48B8A43FDA0801A47D@sct-15-20-4755-11-msonline-outlook-bcc80.templateTenant>" NIL "BASE64" 506 7 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "_000_DB9PR02MB8346BA045773D7D1172BFEB1A725ADB9PR02MB8346eurp_") NIL "hu-HU" NIL) BODY[HEADER] {9153}\r\n
[20:46:48.66][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.66][5855a6b3] IMAP[DATA]: < * 3 FETCH (UID 7 RFC822.SIZE 834862 INTERNALDATE "07-Aug-2023 20:08:50 +0200" FLAGS (\Seen) BODYSTRUCTURE (((("TEXT" "PLAIN" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 2522 56 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "UTF-8") NIL NIL "QUOTED-PRINTABLE" 3099 50 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "000000000000336cb405ff303c63") NIL NIL NIL)("IMAGE" "PNG" ("NAME" "logo") "<189021b60ee32c5ab1>" NIL "BASE64" 24134 NIL ("inline" ("FILENAME" "logo")) NIL NIL)("IMAGE" "PNG" ("NAME" "logo") "<>" NIL "BASE64" 24134 NIL ("inline" ("FILENAME" "logo")) NIL NIL) "RELATED" ("BOUNDARY" "000000000000336cb405ff303c64") NIL NIL NIL)("APPLICATION" "PDF" ("NAME" "LTC_termekismerteto_20200501.pdf") "<189021b60ee9ba6279f2>" NIL "BASE64" 218156 NIL ("attachment" ("FILENAME" "LTC_termekismerteto_20200501.pdf")) NIL NIL)("APPLICATION" "PDF" ("NAME" "LTC_tajekoztato_20230601.pdf") "<189021b60ee4c33ffd73>" NIL "BASE64" 556278 NIL ("attachment" ("FILENAME" "LTC_tajekoztato_20230601.pdf")) NIL NIL) "MIXED" ("BOUNDARY" "000000000000336cb505ff303c65") NIL NIL NIL) BODY[HEADER] {5054}\r\n
[20:46:48.67][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.67][5855a6b3] IMAP[DATA]: < * 2 FETCH (UID 2 RFC822.SIZE 10158 INTERNALDATE "07-Aug-2023 20:08:50 +0200" FLAGS (\Seen) BODYSTRUCTURE (("TEXT" "PLAIN" ("CHARSET" "utf-8") NIL NIL "7BIT" 1832 44 NIL NIL NIL NIL)("TEXT" "HTML" ("CHARSET" "utf-8") "<30FNDZ5I9KU4.ZR2N2IAT01O51@send-email-api>" NIL "7BIT" 3551 55 NIL NIL NIL NIL) "ALTERNATIVE" ("BOUNDARY" "part_7191936b_e982_460c_ae46_065dfc6fbca1") NIL NIL NIL) BODY[HEADER] {4492}\r\n
[20:46:48.67][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.67][5855a6b3] IMAP[DATA]: < * 1 FETCH (UID 1 RFC822.SIZE 5254 INTERNALDATE "07-Aug-2023 20:08:50 +0200" FLAGS (\Seen) BODYSTRUCTURE ("TEXT" "HTML" ("CHARSET" "utf-8" "BOUNDARY" "part_398f7de9_c49c_4c3f_bc32_bc92e44fa22b") "" NIL "7BIT" 586 21 NIL NIL NIL NIL) BODY[HEADER] {4668}\r\n
[20:46:48.67][5855a6b3] IMAP[DATA]: < )\r\n
[20:46:48.67][5855a6b3] IMAP[DATA]: < TAG7 OK UID FETCH completed\r\n
[20:46:48.68][5855a6b3] PHP[NOTICE]: /var/www/html/vendor/afterlogic/mailso/lib/MailSo/Base/Utils.php [line:270, code:2]
[20:46:48.68][5855a6b3] PHP[NOTICE]: Error: iconv(): Wrong encoding, conversion from "" to "//IGNORE" is not allowed
[20:46:48.80][5855a6b3] @Time: 0.8176
[20:46:48.80][5855a6b3] @TimeApiInit: 0.1527
[20:46:48.80][5855a6b3] INFO[MEMORY]: Memory peak usage: 18MB
[20:46:48.80][5855a6b3] INFO[TIME]: Time delta: 1692650808.8021
[20:46:48.80][5855a6b3] INFO[MEMORY]: Memory peak usage: 18MB
[20:46:48.80][5855a6b3] INFO[TIME]: Time delta: 1692650808.8024
[20:46:48.80][5855a6b3] IMAP[DATA]: > TAG8 LOGOUT\r\n
[20:46:48.80][5855a6b3] IMAP[DATA]: < * BYE IMAP4rev1 IDLE Server logging out\r\n
[20:46:48.80][5855a6b3] IMAP[DATA]: < TAG8 OK LOGOUT completed\r\n
[20:46:48.80][5855a6b3] IMAP[NOTE]: Disconnected from "tcp://10.177.177.2:143" (success)

Regards,
P.
Back to Top View pomazip's Profile Search for other posts by pomazip
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6040
Posted: 22 August 2023 at 12:05am | IP Logged Quote Igor

Code:
[20:46:48.21][5855a6b3] IMAP[DATA]: > TAG6 UID SEARCH OR OR OR FROM "possible" TO "possible" CC "possible" SUBJECT "possible"\r\n


I'm quite positive that this IMAP search query isn't generated by entering "text:possible" in search bar, but by entering simply "possible" there. Such a request would look for the word in From, To, Cc and Subject headers. And this line:

Code:
[20:46:48.21][5855a6b3] IMAP[DATA]: < * SEARCH 1 2 7 8 9 10 11 14 15 16 17 41 97 103 106 108 109 113 135 153 159 162 164 171 174 175 176 186 188 189 190 191 192 201 205 206\r\n


indicates 36 messages matching the search pattern were found, and lists their UIDs. And just before that line, mailserver reports Inbox folder contains 36 messages:

Code:
[20:46:48.21][5855a6b3] IMAP[DATA]: < * STATUS "INBOX" (MESSAGES 36 UNSEEN 0 UIDNEXT 207)\r\n


Sounds quite unlikely to me that all the messages there hold this specific word in the headers - unless it's, say, a part of your email address - so I would indeed take this to mailserver support/administrator. Sharing the logs, up until the line that says "OK UID completed" should be sufficient.

Now if you actually enter "text:possible" in search bar, the command in the logs should look rather different:

Code:
> TAG6 UID SEARCH BODY "possible"\r\n


thus searching in just the message body.

--
Regards,
Igor, Afterlogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 
pomazip
Newbie
Newbie


Joined: 15 August 2023
Online Status: Offline
Posts: 9
Posted: 12 September 2023 at 10:58am | IP Logged Quote pomazip

Hello Igor,

Thank you, it was issue with IMAP server as you wrote.
After moving to dovecot, searching working like a charm.

Regards,
P.
Back to Top View pomazip's Profile Search for other posts by pomazip
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump

Powered by Web Wiz Forums version 7.9
Copyright ©2001-2004 Web Wiz Guide