--- /dev/null
+# Global defaults
+CopyArrivalDate yes
+
+######
+IMAPAccount aminb
+Host mail.aminb.org
+User REDACTED
+PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/.passwd/aminb.gpg"
+SSLType IMAPS
+
+IMAPStore aminb-remote
+Account aminb
+
+MaildirStore aminb-local
+Path ~/.mail/aminb/
+Inbox ~/.mail/aminb/Inbox
+
+Channel aminb
+Master :aminb-remote:
+Slave :aminb-local:
+Patterns * !dovecot*
+Create Slave
+SyncState *
+
+######
+IMAPAccount gmail
+Host imap.gmail.com
+User REDACTED
+PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/.passwd/gmail.gpg"
+SSLType IMAPS
+
+IMAPStore gmail-remote
+Account gmail
+
+MaildirStore gmail-local
+Path ~/.mail/gmail/
+Inbox ~/.mail/gmail/Inbox
+
+Channel gmail
+Master :gmail-remote:
+Slave :gmail-local:
+Patterns * ![Gmail]* "[Gmail]/Sent Mail"
+Create Slave
+SyncState *
(require 'mu4e)
(require 'smtpmail)
+
+;; path to our Maildir directory
+(setq mu4e-maildir "/home/amin/.mail")
+
(setq
- mu4e-get-mail-command "offlineimap" ;; or fetchmail, or ...
+ mu4e-get-mail-command "mbsync -aq" ;; or fetchmail, or ...
mu4e-update-interval 300 ;; update every 5 minutes
mu4e-sent-folder "/aminb/Sent"
mu4e-drafts-folder "/aminb/Drafts"
(smtpmail-smtp-server "mail.aminb.org")
(smtpmail-stream-type ssl)
(smtpmail-smtp-service 465))
- ("Gmail"
- (mu4e-sent-folder "/Gmail/[Gmail].Sent Mail")
- (mu4e-drafts-folder "/Gmail/[Gmail].Drafts")
- (mu4e-trash-folder "/Gmail/[Gmail].Trash")
(user-mail-address (get-passwd-file "gmail-mail"))
+ ("gmail"
+ (mu4e-sent-folder "/gmail/[Gmail].Sent Mail")
+ (mu4e-drafts-folder "/gmail/Drafts")
+ (mu4e-trash-folder "/gmail/Trash")
(user-full-name "Amin Bandali")
(smtpmail-default-smtp-server "smtp.gmail.com")
(smtpmail-local-domain "gmail.com")