diff --git a/nnmu.el b/nnmu.el new file mode 100644 index 0000000..b3865c2 --- /dev/null +++ b/nnmu.el @@ -0,0 +1,38 @@ +;;; nnmu.el --- mu backend for Gnus -*- lexical-binding: t -*- + +;; Copyright (C) 2020 Jai Flack + +;; Author: Jai Flack +;; Created: 2020-09-14 +;; Keywords: Gnus mu + +;; This file is not part of GNU Emacs. + +;; This program is free software: you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;;; Commentary + +;; This package provides an `nnmu' backend for Gnus as an alternative +;; to `nnmaildir' or `nnnotmuch' which is also not a part of GNU Emacs. + +;;; Code: + +(require 'nnheader) +(require 'nnmaildir) +(require 'nnoo) + +(nnoo-declare nnmu nnmaildir) +(nnoo-define-basics nnmu) + +(provide 'nnmu)