initial nnmu skeleton

This commit is contained in:
Jai Flack 2020-09-15 00:04:57 +10:00
parent c8936e47b4
commit 8c8aa2a11d
Signed by: jflack
GPG Key ID: 1337AEA30052317F
1 changed files with 38 additions and 0 deletions

38
nnmu.el Normal file
View File

@ -0,0 +1,38 @@
;;; nnmu.el --- mu backend for Gnus -*- lexical-binding: t -*-
;; Copyright (C) 2020 Jai Flack
;; Author: Jai Flack <jflack@disroot.org>
;; 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 <https://www.gnu.org/licenses/>.
;;; 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)