add LUUGmail
parent
e44a15f722
commit
9050f51e30
|
@ -7,3 +7,4 @@ urxvt.shading: 30
|
|||
|
||||
urxvt*font: xft:DejaVuSansMono:pixelsize=14
|
||||
urxvt*boldFont: xft:DejaVuSansMono:pixelsize=14
|
||||
#Xft.dpi: 180
|
||||
|
|
7
msmtprc
7
msmtprc
|
@ -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
|
||||
|
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue