Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* Losing Mail in Gnus - pt 2
@ 2008-11-06  2:24 Brett Randall
  2008-11-06  9:00 ` David
       [not found] ` <mailman.2980.1225962071.25473.info-gnus-english@gnu.org>
  0 siblings, 2 replies; 5+ messages in thread
From: Brett Randall @ 2008-11-06  2:24 UTC (permalink / raw)
  To: info-gnus-english

Hi all

I've started having a problem with my Gnus losing e-mail again. My
original posts are available at:

http://groups.google.com/group/gnu.emacs.gnus/browse_thread/thread/5af37dd8aa003cbf

I'm seeing exactly the same thing happen, where most of the time, my
mail is delivered to the correct location, however sometimes it gets
delivered do a .mairix/Inbox/ directory instead of my Mail/Inbox/
directory. My secondary select methods are:

------------------------------------------------------------------------
(setq gnus-secondary-select-methods
	'(
	  (nnml "brett" (nnml-directory "~brett/Mail/") (nnml-get-new-mail t))
	  (nnml "mairix" (nnml-directory "~brett/.mairix"))
	  )
)
------------------------------------------------------------------------

And I retrieve my mail with:

------------------------------------------------------------------------
(setq mail-sources '((maildir) (maildir :path "~brett/Maildir/cur")))
(setq mail-source-delete-incoming t)
------------------------------------------------------------------------

And I don't really understand the code, but I can my mail with:

------------------------------------------------------------------------
(defun gnus-demon-my-scan-mail ()
  (when (and (gnus-alive-p) mail-here)
    (save-excursion
      (set-buffer gnus-group-buffer)
      (gnus-group-get-new-news 3)
      )
    )
  )
(gnus-demon-add-handler 'gnus-demon-my-scan-mail 2 2)
------------------------------------------------------------------------

If anyone has any more ideas about why some of my mail is getting
delivered to the wrong backend, that would be great!

Thanks

Brett

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Losing Mail in Gnus - pt 2
  2008-11-06  2:24 Losing Mail in Gnus - pt 2 Brett Randall
@ 2008-11-06  9:00 ` David
       [not found] ` <mailman.2980.1225962071.25473.info-gnus-english@gnu.org>
  1 sibling, 0 replies; 5+ messages in thread
From: David @ 2008-11-06  9:00 UTC (permalink / raw)
  To: info-gnus-english

Brett Randall <brett@hillsong.com> writes:
> I've started having a problem with my Gnus losing e-mail again. My
> original posts are available at:
>
> http://groups.google.com/group/gnu.emacs.gnus/browse_thread/thread/5af37dd8aa003cbf

[...]
> ------------------------------------------------------------------------
> (setq gnus-secondary-select-methods
> 	'(
> 	  (nnml "brett" (nnml-directory "~brett/Mail/") (nnml-get-new-mail t))
> 	  (nnml "mairix" (nnml-directory "~brett/.mairix"))
> 	  )
> )
> ------------------------------------------------------------------------

In the above thread I suggested using

(nnml "mairix" (nnml-directory "~brett/.mairix") (nnml-get-new-mail nil))

since nnml-get-new-mail is set to t by default. Did you try this, too?

-David

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Losing Mail in Gnus - pt 2
       [not found] ` <mailman.2980.1225962071.25473.info-gnus-english@gnu.org>
@ 2008-11-06 23:52   ` Brett Randall
  2008-12-03 19:59   ` nnmairix and nnml-get-new-mail (was: Losing Mail in Gnus - pt 2) Reiner Steib
  1 sibling, 0 replies; 5+ messages in thread
From: Brett Randall @ 2008-11-06 23:52 UTC (permalink / raw)
  To: info-gnus-english

>>>>> "David" == David  <de_bb@arcor.de> writes:

> Brett Randall <brett@hillsong.com> writes:
>> I've started having a problem with my Gnus losing e-mail again. My
>> original posts are available at:
>> 
>> http://groups.google.com/group/gnu.emacs.gnus/browse_thread/thread/5af37dd8aa003cbf

> [...]
>> ------------------------------------------------------------------------
>> (setq gnus-secondary-select-methods '( (nnml "brett" (nnml-directory
>> "~brett/Mail/") (nnml-get-new-mail t)) (nnml "mairix" (nnml-directory
>> "~brett/.mairix")) )
>> ) ------------------------------------------------------------------------

> In the above thread I suggested using

> (nnml "mairix" (nnml-directory "~brett/.mairix") (nnml-get-new-mail
> nil))

> since nnml-get-new-mail is set to t by default. Did you try this, too?

I don't remember trying this but just put it in then, will see how it
goes. Thanks!

Brett.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* nnmairix and nnml-get-new-mail (was: Losing Mail in Gnus - pt 2)
       [not found] ` <mailman.2980.1225962071.25473.info-gnus-english@gnu.org>
  2008-11-06 23:52   ` Brett Randall
@ 2008-12-03 19:59   ` Reiner Steib
  2008-12-03 23:29     ` nnmairix and nnml-get-new-mail David
  1 sibling, 1 reply; 5+ messages in thread
From: Reiner Steib @ 2008-12-03 19:59 UTC (permalink / raw)
  To: info-gnus-english

On Thu, Nov 06 2008, David wrote:

> In the above thread I suggested using
[ in gnus-secondary-select-methods ]
> (nnml "mairix" (nnml-directory "~brett/.mairix") (nnml-get-new-mail nil))
>
> since nnml-get-new-mail is set to t by default. Did you try this, too?

Davie, could you please mention this in the documentation?
E.g. in (info "(gnus)Configuring nnmairix")?

Bye, Reiner.
-- 
       ,,,
      (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: nnmairix and nnml-get-new-mail
  2008-12-03 19:59   ` nnmairix and nnml-get-new-mail (was: Losing Mail in Gnus - pt 2) Reiner Steib
@ 2008-12-03 23:29     ` David
  0 siblings, 0 replies; 5+ messages in thread
From: David @ 2008-12-03 23:29 UTC (permalink / raw)
  To: info-gnus-english

Reiner Steib <reinersteib+from-uce@imap.cc> writes:
> On Thu, Nov 06 2008, David wrote:
>
>> In the above thread I suggested using
> [ in gnus-secondary-select-methods ]
>> (nnml "mairix" (nnml-directory "~brett/.mairix") (nnml-get-new-mail nil))
>>
>> since nnml-get-new-mail is set to t by default. Did you try this, too?
>
> Davie, could you please mention this in the documentation?
> E.g. in (info "(gnus)Configuring nnmairix")?

I wasn't entirely sure that this will fix the OP's problem, but I put it
in there now.

-David

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-12-03 23:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-06  2:24 Losing Mail in Gnus - pt 2 Brett Randall
2008-11-06  9:00 ` David
     [not found] ` <mailman.2980.1225962071.25473.info-gnus-english@gnu.org>
2008-11-06 23:52   ` Brett Randall
2008-12-03 19:59   ` nnmairix and nnml-get-new-mail (was: Losing Mail in Gnus - pt 2) Reiner Steib
2008-12-03 23:29     ` nnmairix and nnml-get-new-mail David

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).