Finally getting notmuch + mbsync + msmtp + alot + afew working. Only with work mail so far
parent
9bd2f3a257
commit
6cda265a83
@ -1,7 +1,28 @@
|
|||||||
# This is the default filter chain
|
|
||||||
[SpamFilter]
|
[SpamFilter]
|
||||||
#[ClassifyingFilter]
|
#[ClassifyingFilter]
|
||||||
[KillThreadsFilter]
|
[KillThreadsFilter]
|
||||||
[ListMailsFilter]
|
[ListMailsFilter]
|
||||||
[ArchiveSentMailsFilter]
|
[ArchiveSentMailsFilter]
|
||||||
|
|
||||||
|
#[Filter.1]
|
||||||
|
#message = Tagging IOCOM netmon emails
|
||||||
|
#query = to:netmon@insors.com
|
||||||
|
#tags = +netmon;-new
|
||||||
|
|
||||||
|
[FolderNameFilter]
|
||||||
|
folder_blacklist = iocom/INBOX
|
||||||
|
folder_transforms = Archive:archive Drafts:drafts Sent:sent Trash:trash Builder:builder Info:info Netmon:netmon Spam:spam
|
||||||
|
|
||||||
|
[Filter.1]
|
||||||
|
message = Removing archived mails from inbox
|
||||||
|
query = tag:archive
|
||||||
|
tags = -new;-archive
|
||||||
|
|
||||||
[InboxFilter]
|
[InboxFilter]
|
||||||
|
|
||||||
|
[MailMover]
|
||||||
|
folders = iocom/INBOX/ iocom/INBOX.Archive/
|
||||||
|
max_age = 15
|
||||||
|
|
||||||
|
iocom/INBOX/ = 'NOT tag:inbox':iocom/INBOX.Archive/
|
||||||
|
iocom/INBOX.Archive/ = 'tag:inbox':iocom/INBOX/
|
||||||
|
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
open -a Firefox.app "$1"
|
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
while true; do
|
||||||
|
few -m; mbsync iocom; notmuch new
|
||||||
|
sleep 45
|
||||||
|
done
|
@ -1,21 +1,31 @@
|
|||||||
|
defaults
|
||||||
|
protocol smtp
|
||||||
|
logfile ~/.msmtp.log
|
||||||
|
|
||||||
account DustinswanGmail
|
account DustinswanGmail
|
||||||
host smtp.gmail.com
|
host smtp.gmail.com
|
||||||
port 587
|
port 587
|
||||||
protocol smtp
|
protocol smtp
|
||||||
auth on
|
|
||||||
from dustinswan@gmail.com
|
from dustinswan@gmail.com
|
||||||
user dustinswan@gmail.com
|
user dustinswan@gmail.com
|
||||||
passwordeval gpg --no-tty -d ~/.gmail-password.gpg
|
passwordeval gpg --no-tty -d ~/.gmail-password.gpg
|
||||||
|
auth on
|
||||||
#tls on
|
#tls on
|
||||||
#tls_trust_file ~/.mutt/gmail_cert
|
#tls_trust_file ~/.mutt/gmail_cert
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
account DswanIOCOM
|
account DswanIOCOM
|
||||||
host secure.emailsrvr.com
|
host secure.emailsrvr.com
|
||||||
port 587
|
|
||||||
protocol smtp
|
protocol smtp
|
||||||
auth on
|
auth on
|
||||||
|
port 587
|
||||||
from dswan@iocom.com
|
from dswan@iocom.com
|
||||||
|
tls on
|
||||||
|
tls_starttls on
|
||||||
|
tls_trust_file /usr/local/etc/openssl/cert.pem
|
||||||
user dswan@insors.com
|
user dswan@insors.com
|
||||||
passwordeval gpg --no-tty -d ~/.iocom-password.gpg
|
passwordeval gpg -d ~/.iocom-password.gpg
|
||||||
|
|
||||||
|
|
||||||
account default : DustinswanGmail
|
account default : DustinswanGmail
|
||||||
|
@ -0,0 +1,15 @@
|
|||||||
|
[general]
|
||||||
|
accounts = IOCOM
|
||||||
|
|
||||||
|
[Account IOCOM]
|
||||||
|
localrepository = IOCOMLocal
|
||||||
|
remoterepository = IOCOMRemote
|
||||||
|
|
||||||
|
[Repository IOCOMLocal]
|
||||||
|
type = Maildir
|
||||||
|
localfolders = ~/.mail/iocom
|
||||||
|
|
||||||
|
[Repository IOCOMRemote]
|
||||||
|
type = IMAP
|
||||||
|
remotehost = secure.emailsrvr.com
|
||||||
|
remoteuser = dswan@insors.com
|
Loading…
Reference in New Issue