add LUUGmail

master
paulwalko 2017-12-05 19:55:57 -05:00
parent e44a15f722
commit 9050f51e30
8 changed files with 83 additions and 34 deletions

View File

@ -7,3 +7,4 @@ urxvt.shading: 30
urxvt*font: xft:DejaVuSansMono:pixelsize=14
urxvt*boldFont: xft:DejaVuSansMono:pixelsize=14
#Xft.dpi: 180

View File

@ -26,4 +26,11 @@ user paulsw.pw@gmail.com
passwordeval "pass email/gmail"
from paulsw.pw@gmail.com
account vtluug
host acidburn.vtluug.org
port 587
user pew
passwordeval "pass email/vtluug"
from pew@vtluug.org
account default : vt

7
mutt/accounts/vtluug Normal file
View File

@ -0,0 +1,7 @@
set from = "pew@vtluug.org"
set imap_user = pew
set sendmail = "/usr/bin/msmtp -a vtluug"
set mbox = "+vtluug/archive"
set postponed = "+vtluug/drafts"
color status red default

8
mutt/msmtp.log Normal file
View File

@ -0,0 +1,8 @@
Nov 22 16:36:32 host=smtp.gmail.com tls=on auth=on user=pwalko@vt.edu from=pwalko@vt.edu recipients=ocvt-officers-g@vt.edu mailsize=2822 smtpstatus=250 smtpmsg='250 2.0.0 OK 1511386642 l200sm2445213itl.36 - gsmtp' exitcode=EX_OK
Dec 05 19:47:47 host=587 tls=on auth=on user=pew from=pew@vtluug.org recipients=giggybyte@vt.edu errormsg='cannot connect to 587, port 25: Invalid argument' exitcode=EX_TEMPFAIL
Dec 05 19:49:18 host=587 tls=on auth=on user=pew from=pew@vtluug.org recipients=paul@walko.org errormsg='cannot connect to 587, port 25: Invalid argument' exitcode=EX_TEMPFAIL
Dec 05 19:51:19 host=465 tls=on auth=on user=pew from=pew@vtluug.org recipients=paul@walko.org errormsg='cannot connect to 465, port 25: Invalid argument' exitcode=EX_TEMPFAIL
Dec 05 19:52:20 host=587 tls=on auth=on user=pew from=pew@vtluug.org recipients=paul@walko.org errormsg='cannot connect to 587, port 25: Invalid argument' exitcode=EX_TEMPFAIL
Dec 05 19:53:34 host=587 tls=on auth=on user=pew from=pew@vtluug.org recipients=paul@walko.org errormsg='cannot connect to 587, port 25: Invalid argument' exitcode=EX_TEMPFAIL
Dec 05 19:53:42 host=acidburn.vtluug.org tls=on auth=on user=pew from=pew@vtluug.org recipients=paul@walko.org mailsize=65 smtpstatus=250 smtpmsg='250 2.0.0 Ok: queued as E0EF1140102' exitcode=EX_OK
Dec 05 19:54:46 host=acidburn.vtluug.org tls=on auth=on user=pew from=pew@vtluug.org recipients=dws@vt.edu mailsize=289 smtpstatus=250 smtpmsg='250 2.0.0 Ok: queued as 5D21A140102' exitcode=EX_OK

View File

@ -45,9 +45,10 @@ bind attach <return> view-mailcap
macro pager \Cu "|urlview<enter>" "call urlview to open links"
# Account Settings
set spoolfile = "+vt/INBOX"
set spoolfile = "+vtluug/INBOX"
mailboxes +vt/INBOX \
mailboxes +vtluug/INBOX \
+vt/INBOX \
+walko/INBOX \
+gmail/INBOX \
+vt/9_fall17 \
@ -63,3 +64,4 @@ mailboxes +vt/INBOX \
folder-hook vt/* source ~/.mutt/accounts/vt
folder-hook walko/* source ~/.mutt/accounts/walko
folder-hook gmail/* source ~/.mutt/accounts/gmail
folder-hook vtluug/* source ~/.mutt/accounts/vtluug

View File

@ -1,7 +1,7 @@
[general]
ui = ttyui
accounts = vt, walko, gmail
maxsyncaccounts = 3
accounts = vt, walko, gmail, vtluug
maxsyncaccounts = 4
pythonfile = ~/.mutt/offlineimap.py
############################
@ -27,9 +27,16 @@ remoterepository = gmail-remote
autorefresh = 0.5
quick = 10
# vtluug
[Account vtluug]
localrepository = vtluug-local
remoterepository = vtluug-remote
autorefresh = 0.5
quick = 10
###########################
### Repositories
# vt
## vt
[Repository vt-local]
type = Maildir
localfolders = ~/.mail/vt
@ -64,7 +71,7 @@ folderfilter = lambda folder: folder not in [
'[Gmail]/Chats',
]
# walko
## walko
[Repository walko-local]
type = Maildir
localfolders = ~/.mail/walko
@ -98,7 +105,7 @@ folderfilter = lambda folder: folder not in [
'[Gmail]/Chats',
]
# gmail
## gmail
[Repository gmail-local]
type = Maildir
localfolders = ~/.mail/gmail
@ -132,3 +139,20 @@ folderfilter = lambda folder: folder not in [
'[Gmail]/Important',
'[Gmail]/Chats',
]
## vtluug
[Repository vtluug-local]
type = Maildir
localfolders = ~/.mail/vtluug
[Repository vtluug-remote]
sslcacertfile = /etc/ssl/certs/ca-certificates.crt
maxconnections = 1
type = IMAP
remotehost = acidburn.vtluug.org
ssl = yes
keepalive = 60
holdconnectionopen = yes
remoteuser = pew
remotepasseval = get_pass("vtluug")
realdelete = no

2
zshrc
View File

@ -17,7 +17,7 @@ export ZSH=$HOME/.oh-my-zsh
ZSH_THEME="steeef"
## Plugins
plugins=(git vi-mode history-substring-search)
plugins=(git history-substring-search)
source $ZSH/oh-my-zsh.sh