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