40 lines
1.3 KiB
EmacsLisp
40 lines
1.3 KiB
EmacsLisp
;;; mu4e-config.el --- configuration values -*- lexical-binding: t -*-
|
|
|
|
;; Copyright (C) 2023-2026 Dirk-Jan C. Binnema
|
|
|
|
;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
|
|
;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
|
|
|
|
;; SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
;; mu4e 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.
|
|
|
|
;; mu4e 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 mu4e. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
;;; Generic support for showing new-mail notifications.
|
|
|
|
;;; Code:
|
|
|
|
(defconst mu4e-mu-version "@VERSION@"
|
|
"Required mu binary version.
|
|
mu4e's version must agree with this.")
|
|
|
|
(defconst mu4e-doc-dir "@MU_DOC_DIR@"
|
|
"Directory for mu4e documentation.")
|
|
|
|
(defconst mu4e-icon-path "@MU_ICON_PATH@"
|
|
"Path to the mu/mu4e icon.")
|
|
|
|
(provide 'mu4e-config)
|
|
;;; mu4e-config.el.in ends here
|