Mew
Mew copied to clipboard
Messaging in the Emacs World
It fixes problem that `make install` doesn't install them.
### 1. Emacs as HTTP server to handle OAuth2 redirection It follows Out-Of-Band (OOB) flow Migration Guide: https://developers.google.com/identity/protocols/oauth2/resources/oob-migration To enable this feature, set `mew-auth-oauth2-redirect-url` to non-nil: ``` (setq mew-auth-oauth2-redirect-url "http://localhost:8080")...
If there were no new messages in the IMAP scan, etc., the summary mode marks were not saved to the local cache. This commit fixes it.
I would like to change the `master` branch to `main`.
Since important features have been merged and documentation was radically improved, I guess that we should release v6.10. @tats Could you get #172 done?
Hi, I have a problem with creating encrypted mails and specifically S/MIME. Over time, many S/MIME certificates have been collected by Mew, many of which have expired. If I now...
TODO: - [x] Add XOAUTH2 support, merge from https://github.com/yoshinari-nomura/Mew/tree/mew-support-xoauth2 - [X] Use json-read-from-string instead of json-parse-string for Emacs 26 - [x] Disable XOAUTH2 by default, especially to use IMAP PLAIN...
Emacs ver: This is GNU Emacs 27.1 (build 1, x86_64-apple-darwin19.6.0, NS appkit-1894.60 Version 10.15.7 (Build 19H114)) of 2020-12-27 Mew ver: from Github on Jan 11, 2021 Server: Gmail IMAP server...
こんにちは。 mewのElispファイル群について、diredで下記Elispを実行しました。 ```emacs-lisp (dotimes (i 5) (let ((file (dired-get-filename)) (indent-tabs-mode t)) (with-temp-file file (insert-file-contents file) (indent-region (point-min) (point-max)) (emacs-lisp-mode) (delete-trailing-whitespace) (indent-region (point-min) (point-max))) (dired-next-line 1))) ``` インデントについて、MELPAの [CONTRIBUTING](https://github.com/melpa/melpa/blob/master/CONTRIBUTING.org#making-your-package-ready-for-inclusion) には[Emacs Lisp...
このプランチではEmacs Lisp conventionsに沿った、スペースでのインデントを施しました。 もちろんこのdiffは少し過激ではありますが、[マージに至った例](https://github.com/skk-dev/ddskk/pull/141)もあります。 ぜひご考慮いただければと思います。 下記Elispをdiredで実行しました。 ```emacs-lisp (while t (let ((file (dired-get-filename)) (indent-tabs-mode nil)) (with-temp-file file (insert-file-contents file) (emacs-lisp-mode) (delete-trailing-whitespace) (untabify (point-min) (point-max)) (indent-region (point-min) (point-max))) (dired-next-line 1))) ```