]> code.delx.au - gnu-emacs-elpa/blob - packages/gnorb/gnorb.el
Merge commit '0b9eb2b647a49ffa3dc4e3e61cb8bd94c7fe3634' as 'packages/gnorb'
[gnu-emacs-elpa] / packages / gnorb / gnorb.el
1 ;;; gnorb.el --- Glue code between Gnus, Org, and BBDB
2
3 ;; Copyright (C) 2014 Eric Abrahamsen
4
5 ;; Version: 1
6
7 ;; Maintainer: Eric Abrahamsen <eric@ericabrahamsen.net>
8
9 ;; Author: Eric Abrahamsen <eric@ericabrahamsen.net>
10 ;; Keywords: mail org gnus bbdb todo task
11
12 ;; URL: https://github.com/girzel/gnorb
13
14 ;; This program is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
18
19 ;; This program is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
26
27 ;;; Commentary:
28
29 ;; Load this file to load everything.
30
31 ;;; Code:
32
33 (require 'gnorb-utils)
34 (require 'nngnorb)
35 (require 'gnorb-gnus)
36 (require 'gnorb-bbdb)
37 (require 'gnorb-org)
38 (require 'gnorb-registry)
39
40 (provide 'gnorb)
41 ;;; gnorb.el ends here