Hello Kaiseners,
A while back, ayatana-webmail stopped working for me, due to an IMAP issue.
And I have just got around to diagnose it.
ayatana-webmail github has a couple updates which fixed my problem.
But there has not been a version increase.
https://github.com/AyatanaIndicators/ayatana-webmail
On running, ayatana-webmail was throwing a imaplib2 error:
2024-10-02 14:32:12,628: Ayatana Webmail: ERROR: "erflungued:INBOX" could not connect: module 'imaplib2' has no attribute 'LOGOUT'
Updating application.py :
--- application.py 2024-05-17 18:54:32.000000000 +0930
+++ application.py.new 2024-10-09 23:08:56.531888563 +1030
@@ -22,7 +22,7 @@
import sys
import time
import re
-import imaplib2 as imaplib
+import ayatanawebmail.imaplib2 as imaplib
import os.path
import os
import urllib3
then installing ayatanawebmail:imaplib2.py fixed my problem.
Hope this helps others.
-J