
kde-plasma-mail-checker
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
Plasmoid should periodic check for new messages in configured accounts.
Supported protocols: POP3/POP3S/IMAP4/IMAP4S + IMAP4_IDLE.
Passwords for accounts stored in KWallet.
Plasmoid use KDE-notification for events about new mail.
Support Akonadi (mimeType : "message/rfc822") resources monitoring
(getting new mail).
Support preview (integrated mail viewer) for non-Akonadi accounts
and Quick Answer & Forward Mail (need to install the package same
python-mailer).
Support command line in notification.
See for: EXAMPLES.
https://github.com/F1ash/kde-plasma-mail-checker
6 years ago
https://github.com/F1ash/kde-plasma-mail-checker/blob/simple/Changelog
# TODO :
complete "ru"-dictionary for new version;
6 years ago
https://github.com/F1ash/kde-plasma-mail-checker/blob/simple/Changelog
# TODO :
complete "ru"-dictionary for new version;
bosbes
9 years ago
Report
F1ash
9 years ago
Report
YAFU
9 years ago
I do not use KDE wallet to manage my passwords.I have it disabled.
Can I use your plasma without it?
I ask because when I try to enter an e-mail I get the error "Access Denied" and you answered something about Wallet on the first page.
Thank you.
Report
Murz
9 years ago
Another variant is to use akonadi mail accounts, so plasmamailchecker connects directly to akonadi and don't need the password.
Report
YAFU
9 years ago
Is Akonadi related to Nepomuk, right? I have also disabled Nepomuk, haha (High CPU usage).
Thank you both, anyway.
Report
F1ash
9 years ago
Report
YAFU
9 years ago
plasmoidviewer(5478)/kdeui (Wallet): The kwalletd service has been disabled
Should I try to add something else instead of what is in the example?
Report
F1ash
9 years ago
Report
F1ash
9 years ago
Report
KladionicaCity
9 years ago
Report
F1ash
9 years ago
Report
KladionicaCity
9 years ago
Report
F1ash
9 years ago
I think you need to increase the timeout settings KWallet to close automatically in case of Wallet its non-use.
Report
christopher72
9 years ago
The Akonadi IMAP resource seems to be functioning ok: it says "ready" and it syncs. I can select and add the resource in MailChecker. "Enable" is checked. But.. no notification of mail. Any idea what's wrong here? How can I help troubleshoot this?
Using version 1. KDE 4.6.3.
Report
F1ash
9 years ago
You can try to edit your account and find a resource for akonadi account again. Because when you add new objects to Akonadi, the numbers of their resources are subject to change. Therefore MailChecker not notified of the desired object Akonadi, although the mailbox akonadi working properly.
Report
christopher72
9 years ago
Report
F1ash
9 years ago
You can try to edit your account and find a resource for akonadi account again. Because when you add new objects to Akonadi, the numbers of their resources are subject to change. Therefore MailChecker not notified of the desired object Akonadi, although the mailbox akonadi working properly.
Report
christopher72
9 years ago
Report
peter2m
9 years ago
Line:
str_ = str(randomString(24))
has been replaced by:
str_ = ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(24))
MailChecker work properly, after this fix.
Good idea is replaced it by below lines too.
char_set = string.ascii_uppercase + string.digits
str_ = ''.join(random.sample(char_set,24))
Report
F1ash
9 years ago
Report
danahata
9 years ago
Report
F1ash
9 years ago
See for : http://www.fastmail.fm/help/remote_email_access_server_names_and_ports.html
For detailed information try enable the "Show error messages".
Report
Kirilo
9 years ago
Thanks for this nice plasmoid, but I'm afraid, I can't use it now as my imap has TLS encryption which is not yet supported. Would it be possible to add this, when you have time?
It would be also nice, if you could configure the notifications in order to start kmail directly when new mail hits your inbox, like in this plasmoid: http://kde-look.org/content/show.php/mail_plasmoid?content=98952 - it seems to be unmaintained, unfortunately (can't compile it in SC 4.6).
Report
Kirilo
9 years ago
Anyhow, although I have the same settings as with KMail, with the plasmoid I get the following error message:
_ssl.c:499: error:140770FC:SSL
routines:SSL23_GET_SERVER_HELLO
:unknown protocol
Report
F1ash
9 years ago
For SSL need to use port 995 (POP3), port 993 (IMAP4).
Report