All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 [<- widgets](https://github.com/copycat-killer/lain/wiki/Widgets)
3 Shows mail count in a textbox fetching over IMAP.
5 myimapcheck = lain.widgets.imap(args)
7 New mails are notified like this:
9 +--------------------------------------------+
11 | |\ /| donald@disney.org has 3 new messages |
13 +--------------------------------------------+
15 The function takes a table as argument. Required table parameters are:
17 Variable | Meaning | Type
19 `server` | Mail server | string
20 `mail` | User mail | string
21 `password` | User password | string
23 while the optional are:
25 Variable | Meaning | Type | Default
27 `port` | IMAP port | int | 993
28 `timeout` | Refresh timeout seconds | int | 60
29 `is_plain` | Define whether `password` is a plain password (true) or a function that retrieves it (false) | boolean | false
30 `settings` | User settings | function
32 Let's focus better on `is_plain`.
34 You can just set your password like this:
37 args.password = "mypassword"
39 and you'll have the same security provided by `~/.netrc`.
41 **Or** you can use a keyring, like [python keyring](https://pypi.python.org/pypi/keyring):
43 args.password = "keyring get password"
45 When `is_plain == false`, it *executes* `password` before using it, so you can also use whatever password fetching solution you want.
47 `settings` can use the value `mailcount`, an integer greater or equal to zero, and can modify `mail_notification_preset` table, which will be the preset for the naughty notifications. Check [here](http://awesome.naquadah.org/doc/api/modules/naughty.html#notify) for the list of variables it can contain.
51 mail_notification _preset = {
52 icon = lain/icons/mail.png,
56 Note that `mailcount` is 0 either if there are no new mails or credentials are invalid, so make sure you get the right settings.