Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andyhd/imap-jabber
simple jabber bot / imap client
https://github.com/andyhd/imap-jabber
Last synced: 3 months ago
JSON representation
simple jabber bot / imap client
- Host: GitHub
- URL: https://github.com/andyhd/imap-jabber
- Owner: andyhd
- Created: 2012-05-24T14:26:31.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-05-24T14:34:39.000Z (over 12 years ago)
- Last Synced: 2024-07-19T22:50:02.509Z (4 months ago)
- Language: Python
- Size: 89.8 KB
- Stars: 5
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
IMAP Jabber Bot
===============This is a simple script that connects to an IMAP server, checks for new mail
every 10s and sends jabber messages to a specified account for each new mail.You can send a message to the bot in the form "read x", where x is the number
of the mail, and it will reply with the body of the email.You need to create a `config.py` file in the same directory, which looks like
this:config = {
'imap_host': 'imap.example.com',
'imap_user': '[email protected]',
'imap_pass': 'imap password',
'jabber_to': '[email protected]',
'jabber_user': '[email protected]',
'jabber_pass': 'jabber password'
}Why?
----It's just a quick hack I wrote to give me convenient access to my emails, since
I always have a chat window open for IRC anyway.