Gnus development mailing list
 help / color / mirror / Atom feed
* No Gnus v0.11: splitting, error: encode-coding-string(nil utf-7-imap)
@ 2010-10-25  7:17 Gijs Hillenius
  2010-10-29 22:23 ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 4+ messages in thread
From: Gijs Hillenius @ 2010-10-25  7:17 UTC (permalink / raw)
  To: ding


This is with No Gnus v0.11 gotten (gitted?) on October 19th,


Just now noticed that five messages in the INBOX did not get splitted to
their INBOX.folders. I use splitting with a hook to bbdb like so

,----
| (setq nnimap-split-fancy
|       '(| (: gnus-folder-per-bbdb)
|       ("From" "googlealerts.*" "INBOX.google-alerts") 
|       and more lines like the above
`----



Marking the unsplitted messages and hitting 'B r' asks me:

Backend to use when respooling (default nnimap):

Now, this value 'nnimap' is correct, but hitting tab here ^ prints [no
match]. And if I hit 'enter' (thus telling it to use the nnimap backend)
I get this error:


Debugger entered--Lisp error: (wrong-type-argument stringp nil)
  encode-coding-string(nil utf-7-imap)
  utf7-encode(nil t)
  nnimap-request-accept-article(nil "thuis" t)
  gnus-request-accept-article(nil (nnimap "thuis" (nnimap-address
  "server") (nnimap-inbox "INBOX") (nnimap-split-methods
  nnmail-split-fancy) (nnir-search-engine imap) (nnimap-stream ssl)) t
  t)
  gnus-summary-move-article(nil nil (nnimap "thuis" (nnimap-address
  "server") (nnimap-inbox "INBOX") (nnimap-split-methods
  nnmail-split-fancy) (nnir-search-engine imap) (nnimap-stream ssl))
  copy)
  gnus-summary-copy-article(nil nil (nnimap "thuis" (nnimap-address
  "server") (nnimap-inbox "INBOX") (nnimap-split-methods
  nnmail-split-fancy) (nnir-search-engine imap) (nnimap-stream ssl)))
  gnus-summary-respool-article(nil (nnimap "thuis" (nnimap-address
  "server") (nnimap-inbox "INBOX") (nnimap-split-methods
  nnmail-split-fancy) (nnir-search-engine imap) (nnimap-stream ssl)))
  call-interactively(gnus-summary-respool-article nil nil)





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

* Re: No Gnus v0.11: splitting, error: encode-coding-string(nil utf-7-imap)
  2010-10-25  7:17 No Gnus v0.11: splitting, error: encode-coding-string(nil utf-7-imap) Gijs Hillenius
@ 2010-10-29 22:23 ` Lars Magne Ingebrigtsen
  2010-11-01 14:33   ` Gijs Hillenius
  0 siblings, 1 reply; 4+ messages in thread
From: Lars Magne Ingebrigtsen @ 2010-10-29 22:23 UTC (permalink / raw)
  To: ding

Gijs Hillenius <gijs@hillenius.net> writes:

> | (setq nnimap-split-fancy
> |       '(| (: gnus-folder-per-bbdb)
> |       ("From" "googlealerts.*" "INBOX.google-alerts") 
> |       and more lines like the above
> `----
>
> Marking the unsplitted messages and hitting 'B r' asks me:

I think for `B r' to work, you have to use nnmail-split-methods/fancy,
because that's what it's using.

What's the value of those values?

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen




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

* Re: No Gnus v0.11: splitting, error: encode-coding-string(nil utf-7-imap)
  2010-10-29 22:23 ` Lars Magne Ingebrigtsen
@ 2010-11-01 14:33   ` Gijs Hillenius
  2010-11-01 18:46     ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 4+ messages in thread
From: Gijs Hillenius @ 2010-11-01 14:33 UTC (permalink / raw)
  To: ding

On 30 Oct 2010, Lars Magne Ingebrigtsen wrote:

> Gijs Hillenius <gijs@hillenius.net> writes:
>
>> | (setq nnimap-split-fancy
>> |       '(| (: gnus-folder-per-bbdb)
>> |       ("From" "googlealerts.*" "INBOX.google-alerts") 
>> |       and more lines like the above
>> `----
>>
>> Marking the unsplitted messages and hitting 'B r' asks me:
>
> I think for `B r' to work, you have to use nnmail-split-methods/fancy,
> because that's what it's using.


The documentation says:

,----
| `nnimap-split-fancy'
|      Uses the same syntax as `nnmail-split-fancy'.
`----

which led me to expect 'B r' to work :-)


> What's the value of those values?

I'd love to answer this, but I need to know what it is you're asking.





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

* Re: No Gnus v0.11: splitting, error: encode-coding-string(nil utf-7-imap)
  2010-11-01 14:33   ` Gijs Hillenius
@ 2010-11-01 18:46     ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 4+ messages in thread
From: Lars Magne Ingebrigtsen @ 2010-11-01 18:46 UTC (permalink / raw)
  To: ding

Gijs Hillenius <gijs@hillenius.net> writes:

> The documentation says:
>
> ,----
> | `nnimap-split-fancy'
> |      Uses the same syntax as `nnmail-split-fancy'.
> `----
>
> which led me to expect 'B r' to work :-)

It uses the same syntax, but `B r' doesn't use that variable..

>> What's the value of those values?
>
> I'd love to answer this, but I need to know what it is you're asking.

Er...  me too.  :-)

Oh, I meant -- what's the value of the nnmail-split-* variables...

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen




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

end of thread, other threads:[~2010-11-01 18:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-25  7:17 No Gnus v0.11: splitting, error: encode-coding-string(nil utf-7-imap) Gijs Hillenius
2010-10-29 22:23 ` Lars Magne Ingebrigtsen
2010-11-01 14:33   ` Gijs Hillenius
2010-11-01 18:46     ` Lars Magne Ingebrigtsen

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).