Como configurar Mutt e Spamassassim

1

Eu tenho o Mutt para acessar e ler meu gmail, mas na caixa de entrada, ele inclui todos os e-mails que a interface do Gmail esconde em duas guias (chamadas rótulos) chamadas 'Social' e 'Promoções' .

Gostaria de mudar para uma única interface de e-mail do console, mas ver todos esses e-mails extras com spam é insuportável! Estou um pouco nebuloso sobre as opções disponíveis para lidar com isso, considerando que estou usando o IMAP e não POP ... Além disso, eu não acredito que eu estou puxando essas mensagens localmente para algo como Spamassassin para ajudar.

Idealmente, gostaria de acessar o e-mail, classificá-lo e eliminar o spam, e mostrar uma caixa de entrada limpa no Mutt que também é refletida nos servidores do gmail.

Examinei várias páginas on-line, mas todas as que são relacionadas a algo como fetchmail, procmail e especialmente o Spamassassin parecem estar relacionadas ao assunto de executar seu próprio servidor de e-mail (não usar um servidor de e-mail hospedado) . O manual do Mutt é como ler um livro sobre cirurgia cerebral para mim, e eu não tenho certeza para onde ir para o que parece ser uma solução que eu acho que muitas pessoas teriam ... Como limpar o Gmail ao usar Mutt.

Eu anexei meu muttrc, um .procmail e um .forward ... Eu também instalei o spamassassin dos repositórios do Arch, mas não tenho certeza de onde apontá-lo ou como garantir que esta integração de sistemas foi encenada neste ponto.

Qualquer ajuda é apreciada.

set ssl_starttls=yes
set ssl_force_tls=yes
set imap_user = '[email protected]'
set imap_pass = 'XXXXXXXXX'
set from='[email protected]'
set realname='XXXXXXXXX'
set folder = imaps://imap.gmail.com/
set spoolfile = imaps://imap.gmail.com/INBOX
set postponed="imaps://imap.gmail.com/[Gmail]/Drafts"
set header_cache = "~/.mutt/cache/headers"
set message_cachedir = "~/.mutt/cache/bodies"
set certificate_file = "~/.mutt/certificates"
set smtp_url = 'smtps:// [email protected]:[email protected]:465/'
set move = no
set imap_keepalive = 900
mailboxes +GMail/INBOX +GMail/Social +GMail/Promotions
set sort=threads
set sort_browser=date
set sort_aux=reverse-last-date-received
set editor=nvim


source ~/.mutt/mutt-colors-solarized/mutt-colors-solarized-light-256.muttrc



# Sanely handle multi-part messages (prefer text part, but yield to
# mailcap-configured rendering for html-only)
alternative_order text/plain text/html
auto_view text/html

set sleep_time = 0

bind pager j next-line
bind pager k previous-line
bind attach,index,pager \CD next-page
bind attach,index,pager \CU previous-page
bind pager g top
bind pager G bottom
bind attach,index g first-entry
bind attach,index G last-entry

Aqui está o ~ / .procmail

# SpamAssassin sample procmailrc
#
# Pipe the mail through spamassassin (replace 'spamassassin' with 'spamc'
# if you use the spamc/spamd combination)
#
# The condition line ensures that only messages smaller than 250 kB
# (250 * 1024 = 256000 bytes) are processed by SpamAssassin. Most spam
# isn't bigger than a few k and working with big messages can bring
# SpamAssassin to its knees.
#
# The lock file ensures that only 1 spamassassin invocation happens
# at 1 time, to keep the load down.
#
:0fw: spamassassin.lock
* < 256000
| spamassassin

# Mails with a score of 15 or higher are almost certainly spam (with 0.05%
# false positives according to rules/STATISTICS.txt). Let's put them in a
# different mbox. (This one is optional.)
:0:
* ^X-Spam-Level: \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
almost-certainly-spam

# All mail tagged as spam (eg. with a score higher than the set threshold)
# is moved to "probably-spam".
:0:
* ^X-Spam-Status: Yes
probably-spam

# Work around procmail bug: any output on stderr will cause the "F" in "From"
# to be dropped.  This will re-add it.
:0
* ^^rom[ ]
{
  LOG="*** Dropped F off From_ header! Fixing up. "

  :0 fhw
  | sed -e '1s/^/F/'
}

Preciso puxar mensagens para baixo localmente e executá-las aqui? Estou tão confuso, mas sei de uma coisa ... Estou fazendo algumas coisas muito erradas.

Obrigado por toda sua ajuda!

    
por testname123 29.03.2016 / 18:50

0 respostas