]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-maildir-fcc.el
emacs: add prompt to create maildir for fcc if it does not exist.
[notmuch] / emacs / notmuch-maildir-fcc.el
1 ;; This file is free software; you can redistribute it and/or modify
2 ;; it under the terms of the GNU General Public License as published
3 ;; by the Free Software Foundation; either version 2, or (at your
4 ;; option) any later version.
5
6 ;; This program is distributed in the hope that it will be useful,
7 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
8 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 ;; GNU General Public License for more details.
10
11 ;; You should have received a copy of the GNU General Public License
12 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
13 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
14 ;; Boston, MA 02110-1301, USA.
15 ;;
16 ;; To use this as the fcc handler for message-mode,
17 ;; customize the notmuch-fcc-dirs variable
18
19 (require 'message)
20
21 (defvar notmuch-maildir-fcc-count 0)
22
23 (defcustom notmuch-fcc-dirs nil
24  "If set to non-nil, this will cause message mode to file (fcc) your mail in the specified directory, depending on your From address.
25
26  The first entry (a list) is used as a default fallback
27  when nothing matches. So in the easiest case notmuch-fcc-dirs is
28  just something like ((\"INBOX.Sent\"))
29
30  If you need a more fancy setup, where you want different Outboxes depending
31  on your From address, you use something like this:
32
33      (   (\"defaultinbox\")
34          (\"Sebastian Spaeth <Sebastian@SSpaeth.de>\" . \"privat\")
35          (\"Sebastian Spaeth <SSpaeth@ethz.ch>\" . \"uni\")
36      )
37
38  This will constructs a path, concatenating the content of the
39  variable 'message-directory' (a message mode variable
40  customizable via m-x
41  customize-variable<RET>message-directory<RET>) and the second
42  part in the alist."
43  :require 'notmuch-fcc-initialization
44  :group 'notmuch
45 )
46
47 (defun notmuch-fcc-initialization ()
48   "If notmuch-fcc-directories is set,
49    hook them into the message-fcc-handler-function"
50 (if (not (eq notmuch-fcc-dirs nil)) (progn
51     ;Set up the message-fcc-handler to move mails to the maildir in Fcc
52     ;The parameter is hardcoded to mark messages as "seen"
53     (setq message-fcc-handler-function
54           '(lambda (destdir)
55              (notmuch-maildir-fcc-write-buffer-to-maildir destdir t)))
56     ;add a hook to actually insert the Fcc header when sending
57     ;(preferrably we would use message-header-setup-up, but notmuch-reply
58     ; munges headers after that is run, so it won't work for replies within
59     ; notmuch)
60     (add-hook 'message-send-hook 'notmuch-fcc-header-setup))))
61
62 (defun notmuch-fcc-header-setup ()
63   "Can be added to message-send-hook and will set the FCC header
64       based on the values of notmuch-fcc-directories (see the
65       variable customization there for examples). It uses the
66       first entry as default fallback if no From address
67       matches."
68   ; only do something if notmuch-fcc-dirs is set
69   (if notmuch-fcc-dirs
70    (let ((subdir
71           (cdr (assoc-string (message-fetch-field "from") notmuch-fcc-dirs t))))
72      (if (eq subdir nil) (setq subdir (car (car notmuch-fcc-dirs))))
73      (unless (message-fetch-field "fcc")
74        (message-add-header (concat "Fcc: " message-directory subdir)))
75      (let ((fcc-header (message-fetch-field "fcc")))
76      (unless (notmuch-maildir-fcc-dir-is-maildir-p fcc-header)
77        (cond ((not (file-writable-p fcc-header))
78               (error (format "%s is not a maildir, but you don't have permission to create one." fcc-header)))
79              ((y-or-n-p (format "%s is not a maildir. Create it? "
80                                  fcc-header))
81               (notmuch-maildir-fcc-create-maildir fcc-header))
82              (t
83               (error "Not sending message."))))))))
84               
85 (defun notmuch-maildir-fcc-host-fixer (hostname)
86   (replace-regexp-in-string "/\\|:"
87                             '(lambda (s)
88                                (cond ((string-equal s "/") "\\057")
89                                      ((string-equal s ":") "\\072")
90                                      (t s)))
91                             hostname
92                             t
93                             t))
94
95 (defun notmuch-maildir-fcc-make-uniq-maildir-id ()
96    (let* ((ct (current-time))
97           (timeid (+ (* (car ct) 65536) (cadr ct)))
98           (microseconds (car (cdr (cdr ct))))
99           (hostname (notmuch-maildir-fcc-host-fixer system-name)))
100      (setq notmuch-maildir-fcc-count (+ notmuch-maildir-fcc-count 1))
101      (format "%d.%d_%d_%d.%s"
102              timeid
103              (emacs-pid)
104              microseconds
105              notmuch-maildir-fcc-count
106              hostname)))
107
108 (defun notmuch-maildir-fcc-dir-is-maildir-p (dir)
109   (and (file-exists-p (concat dir "/cur/"))
110        (file-exists-p (concat dir "/new/"))
111        (file-exists-p (concat dir "/tmp/"))))
112
113 (defun notmuch-maildir-fcc-create-maildir (path)
114   (cond ((or (not (file-exists-p path)) (file-directory-p path))
115          (make-directory (concat path "/cur/") t)
116          (make-directory (concat path "/new/") t)
117          (make-directory (concat path "/tmp/") t))
118         ((file-regular-p path)
119          (error "%s is a file. Can't creat maildir." path))
120         (t
121          (error "I don't know how to create a maildir here"))))
122          
123   
124
125 (defun notmuch-maildir-fcc-save-buffer-to-tmp (destdir)
126   "Returns the msg id of the message written to the temp directory
127 if successful, nil if not."
128   (let ((msg-id (notmuch-maildir-fcc-make-uniq-maildir-id)))
129     (while (file-exists-p (concat destdir "/tmp/" msg-id))
130       (setq msg-id (notmuch-maildir-fcc-make-uniq-maildir-id)))
131     (cond ((notmuch-maildir-fcc-dir-is-maildir-p destdir)
132            (write-file (concat destdir "/tmp/" msg-id))
133            msg-id)
134           (t
135            (error (format "Can't write to %s. Not a maildir."
136                           destdir))
137            nil))))
138
139 (defun notmuch-maildir-fcc-move-tmp-to-new (destdir msg-id)
140   (add-name-to-file
141    (concat destdir "/tmp/" msg-id)
142    (concat destdir "/new/" msg-id ":2,")))
143
144 (defun notmuch-maildir-fcc-move-tmp-to-cur (destdir msg-id &optional mark-seen)
145   (add-name-to-file
146    (concat destdir "/tmp/" msg-id)
147    (concat destdir "/cur/" msg-id ":2," (when mark-seen "S"))))
148
149 (defun notmuch-maildir-fcc-write-buffer-to-maildir (destdir &optional mark-seen)
150   "Writes the current buffer to maildir destdir. If mark-seen is
151 non-nil, it will write it to cur/, and mark it as read. It should
152 return t if successful, and nil otherwise."
153   (let ((orig-buffer (buffer-name)))
154     (with-temp-buffer
155       (insert-buffer-substring orig-buffer)
156       (catch 'link-error
157         (let ((msg-id (notmuch-maildir-fcc-save-buffer-to-tmp destdir)))
158           (when msg-id
159             (cond (mark-seen
160                    (condition-case err
161                        (notmuch-maildir-fcc-move-tmp-to-cur destdir msg-id t)
162                      (file-already-exists
163                       (throw 'link-error nil))))
164                   (t
165                    (condition-case err
166                        (notmuch-maildir-fcc-move-tmp-to-new destdir msg-id)
167                      (file-already-exists
168                       (throw 'link-error nil))))))
169           (delete-file (concat destdir "/tmp/" msg-id))))
170       t)))
171
172 (notmuch-fcc-initialization)
173 (provide 'notmuch-maildir-fcc)