From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.help Subject: Re: gnus, thunderbird and imap Date: Sun, 02 Jan 2011 18:00:20 +0100 Message-ID: <87hbdr8cm3.fsf@member.fsf.org> References: <87zkrsl93s.fsf@news.individual.de> <4D189BB1.1030904@mousecar.com> <87aajm2ea3.fsf@guruji.demimonde> <87mxnl6gdv.fsf@member.fsf.org> <87tyhthmuf.fsf@guruji.demimonde> <87fwtdu5vz.fsf@guruji.demimonde> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1293988007 30600 80.91.229.12 (2 Jan 2011 17:06:47 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 2 Jan 2011 17:06:47 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jan 02 18:06:43 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PZROE-0007OE-9h for geh-help-gnu-emacs@m.gmane.org; Sun, 02 Jan 2011 18:06:42 +0100 Original-Received: from localhost ([127.0.0.1]:56643 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PZRKh-0008Vf-I1 for geh-help-gnu-emacs@m.gmane.org; Sun, 02 Jan 2011 12:03:03 -0500 Original-Received: from [140.186.70.92] (port=48252 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PZRIM-0008D7-07 for help-gnu-emacs@gnu.org; Sun, 02 Jan 2011 12:00:39 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PZRIK-0003ul-Px for help-gnu-emacs@gnu.org; Sun, 02 Jan 2011 12:00:37 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]:45789) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PZRIK-0003ue-JF for help-gnu-emacs@gnu.org; Sun, 02 Jan 2011 12:00:36 -0500 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PZRIH-0005pE-Sv for help-gnu-emacs@gnu.org; Sun, 02 Jan 2011 18:00:33 +0100 Original-Received: from 95-88-32-105-dynip.superkabel.de ([95.88.32.105]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 02 Jan 2011 18:00:33 +0100 Original-Received: from tassilo by 95-88-32-105-dynip.superkabel.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 02 Jan 2011 18:00:33 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 22 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 95-88-32-105-dynip.superkabel.de User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:Qu4LorqqHGCQZtcYzAYge1pvPs8= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:78053 Archived-At: Tyler Smith writes: Hi Tyler, > (defun my-gnus-summary-hook () > (local-set-key "t" 'gnus-summary-mark-as-processable)) Is `#' not short enough? > (setq gnus-posting-styles > '(("*" ; Matches all groups of messages ^^^ No. ;-) The regexp "*" matches only strings containing an asterisk, although that's more or less a coincidence. Basically, it's an invalid regular expression: * means "the character or group preceeding the * may occure zero or many times". Ok, what I wanted to say: you want ".*" above. :-) Bye, Tassilo