From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/17698 Path: news.gmane.org!not-for-mail From: cseberino@gmail.com Newsgroups: gmane.emacs.gnus.user Subject: Problem trying to get new email every 10 minutes automatically Date: Sat, 17 Oct 2015 18:44:29 -0700 (PDT) Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1445146470 7956 80.91.229.3 (18 Oct 2015 05:34:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 18 Oct 2015 05:34:30 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Sun Oct 18 07:34:18 2015 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Zngbq-0004RF-Ah for gegu-info-gnus-english@m.gmane.org; Sun, 18 Oct 2015 07:34:18 +0200 Original-Received: from localhost ([::1]:60731 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zngbp-0007Ul-Kt for gegu-info-gnus-english@m.gmane.org; Sun, 18 Oct 2015 01:34:17 -0400 X-Received: by 10.66.220.229 with SMTP id pz5mr16309857pac.17.1445132669672; Sat, 17 Oct 2015 18:44:29 -0700 (PDT) X-Received: by 10.182.246.163 with SMTP id xx3mr236197obc.10.1445132669581; Sat, 17 Oct 2015 18:44:29 -0700 (PDT) Original-Path: usenet.stanford.edu!kq10no22818031igb.0!news-out.google.com!n2ni33354igy.0!nntp.google.com!kq10no22818027igb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.gnus Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=74.195.224.157; posting-account=VkuUtQkAAADKqMjRUmZTNs7a8uCSNNy2 Original-NNTP-Posting-Host: 74.195.224.157 User-Agent: G2/1.0 Injection-Date: Sun, 18 Oct 2015 01:44:29 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.gnus:88829 X-Mailman-Approved-At: Sun, 18 Oct 2015 01:34:16 -0400 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:17698 Archived-At: The last line below of my Gnus config I assumed was to grab new email every 10 minutes. I sent an email to my Gmail account and noticed it showed up in my other non-Emacs email client inbox but not in Gnus inbox. Why? (If I type "g" manually in Gnus then it DOES get new email!?!?) cs (setq-default gnus-permanently-visible-groups ".*.*") (require 'nnir) (setq-default gnus-select-method '(nnimap "gmail" (nnimap-address "imap.googlemail.com") (nnimap-server-port "imaps") (nnimap-stream ssl) (nnir-search-engine imap))) (setq-default smtpmail-smtp-service 587 gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]") (setq-default gnus-posting-styles '(((header "to" "REDACTED") (address "REDACTED")) ((header "to" "REDACTED") (address "REDACTED")) ((header "to" "REDACTED") (address "REDACTED")))) (setq-default user-mail-address "REDACTED") (setq-default user-full-name "REDACTED") (setq-default smtpmail-smtp-server "smtp.googlemail.com") (setq-default send-mail-function 'smtpmail-send-it) (setq-default message-send-mail-function 'smtpmail-send-it) (gnus-demon-add-handler 'gnus-demon-scan-news 10 t)